﻿<style>
html, body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #111;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.cs-top {
  background: #1e3c72 !important;
  padding: 8px 4% !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 20px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  min-height: 64px !important;
}

.cs-top .cs-logo,
.cs-top .cs-logo h1 {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.cs-top .cs-logo a {
  color: #fff !important;
  text-decoration: none !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.cs-nav-right {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
}

.cs-top a,
.cs-top button {
  font-family: Arial, Helvetica, sans-serif !important;
}

.cs-top a {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.cs-top a:hover {
  color: #E1EDFF !important;
  text-decoration: none !important;
}

.cs-user-menu {
  position: relative !important;
  padding: 8px 0 !important;
}

.cs-user-btn {
  background: transparent !important;
  border: none !important;
  color: #fff !important;
  font-size: 16px !important;
  cursor: pointer !important;
  font-weight: 700 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.cs-user-btn:hover {
  color: #E1EDFF !important;
}

.cs-user-dropdown {
  position: absolute !important;
  right: 0 !important;
  top: 100% !important;
  min-width: 230px !important;
  background: #fff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18) !important;
  display: none !important;
  z-index: 2000 !important;
}

.cs-user-menu:hover .cs-user-dropdown,
.cs-user-menu:focus-within .cs-user-dropdown {
  display: block !important;
}

.cs-user-dropdown a {
  display: block !important;
  padding: 14px 18px !important;
  color: #222 !important;
  background: #fff !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  white-space: nowrap !important;
}

.cs-user-dropdown a:hover {
  background: #f4f6f8 !important;
  color: #1e3c72 !important;
}

.cs-dropdown-separator {
  height: 1px !important;
  background: #e5e5e5 !important;
}

/* ===== Společné drobnosti ===== */

.btn,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

footer {
  background: #254a82;
  color: #fff;
  text-align: center;
  padding: 25px;
  margin-top: auto;
}

@media (max-width: 750px) {
  .cs-top {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .cs-top .cs-logo a {
    font-size: 32px !important;
  }

  .cs-nav-right {
    width: 100% !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }

  .cs-user-dropdown {
    left: 0 !important;
    right: auto !important;
  }
}
</style>