body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

header {
  background-color: #7a4dee;
  color: white;
  padding: 10px;
  text-align: center;
}

nav {
  display: flex;
  justify-content: center;
  background-color: #4a148c;
  padding: 10px 0;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
}

#reservations {
  margin-top: 20px;
}

#reservations table {
  width: 100%;
  border-collapse: collapse;
}

#reservations th, #reservations td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

#reservations th {
  background-color: #f2f2f2;
}

.filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-group input,
.filter-group select {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* 🎨 НОВО: Stripe Payment Form */

.payment-form {
  max-width: 400px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.payment-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #4a148c;
}

.payment-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

.payment-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.payment-form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #7a4dee;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.payment-form button:hover {
  background-color: #6b42d1;
}

@media (max-width: 600px) {
  .filter-group {
    flex-direction: column;
  }
}
/* 🎨 Форма за резервации */
.reservation-form {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.reservation-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #4a148c;
}

.reservation-form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.reservation-form button {
  margin-top: 25px;
  width: 100%;
  padding: 12px;
  background-color: #7a4dee;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.reservation-form button:hover {
  background-color: #6b42d1;
}

.consent-label {
  margin-top: 15px;
  font-size: 14px;
}

.consent-label a {
  color: #4a148c;
  text-decoration: underline;
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.logo {
  max-width: 200px;
  height: auto;
}

/* ---------------------------- */
/* BOOKING LOGO */
/* ---------------------------- */

.booking-logo,
.form-logo,
.logo {
  display: block;
  width: 340px;
  max-width: 92%;
  height: auto;
  margin: 22px auto 18px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .booking-logo,
  .form-logo,
  .logo {
    width: 520px;
    max-width: 106vw;
    height: auto;
    margin: 28px auto 18px;
    transform: scale(1.08);
    transform-origin: center;
  }
}

html,
body {
  overflow-x: hidden;
}

/* ---------------------------- */
/* MOBILE BOOKING LOGO OVERRIDE */
/* ---------------------------- */

@media (max-width: 600px) {
  img.booking-logo,
  img.form-logo,
  img.logo {
    width: 80vw !important;
    max-width: 80vw !important;
    min-width: 300px !important;
    height: auto !important;
    display: block !important;
    margin: 24px auto 16px !important;
    object-fit: contain !important;
  }
}
