@import url('https://fonts.googleapis.com/css2?family=Alan+Sans:wght@300..900&display=swap');

body, html, p, div, td, th, h1, h2, input {
  font-family: "Alan Sans", sans-serif;
  font-size: 1em;
}

/* Jemné pastelové pozadí */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

body {
  background: linear-gradient(135deg, #fbf7eb, #f9efd8, #f5e7c8);
  background-size: 300% 300%;
  animation: gradientShift 20s ease-in-out infinite;
  color: #000; /* 🔹 černý text */
}

/* Karty */
.card {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(180, 150, 100, 0.15);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(150, 120, 80, 0.1);
}

/* Hlavičky tabulek */
.table thead {
  background-color: rgba(255, 250, 230, 0.9);
}

/* Nadpisy */
h3, h4, h5 {
  color: #000;
  font-weight: 600;
}

/* Teplé tlačítko – světlejší verze */
.btn-success {
  background-color: #e0c78a;
  border-color: #d6b871;
  color: #000;
  font-weight: 500;
}
.btn-success:hover {
  background-color: #d6b871;
  border-color: #c6a85f;
  color: #000;
}

/* Akcenty */
.text-accent {
  color: #8b6f3d;
}

/* Navbar */
.navbar-brand {
  font-weight: 600;
  color: #000 !important;
}
.navbar-nav .nav-link.active {
  font-weight: 600;
  color: #000 !important;
}

/* Login box */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.login-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
  padding: 2rem;
  width: 100%;
  max-width: 420px;
}

/* Hover pro řádky tabulek */
.table-hover tbody tr:hover {
  background-color: rgba(255, 247, 220, 0.6);
}
