/* CSS Document */
/* Základní stylování stránky */

@media (max-width: 768px) {
  .rezervace-tabulka th,
  .rezervace-tabulka td {
    font-size: 14px;
    padding: 8px;
  }

  .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Nadpis */
h2 {
  margin-bottom: 20px;
  color: #333;
}

/* Login box */
.login-box {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

/* Formulářové prvky */
label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #555;
  font-weight: bold;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

/* Tlačítko */
button[type="submit"] {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background-color: #7c4dff;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #5e35b1;
}

/* Chybová hláška */
p[style*="color: red"] {
  margin-bottom: 10px;
  font-weight: bold;
}