/* General styling */
body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

/* Language Switcher */
.language-switcher {
  margin-bottom: 20px;
}
.language-switcher button {
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 8px 14px;
  margin: 4px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.language-switcher button:hover {
  background-color: #d4edda;
}

/* Booking Form */
.booking-form {
  margin-top: 20px;
  background-color: #f9fff8;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #cde0c9;
  max-width: 500px;
}
.booking-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #2e5939;
}
.booking-form input[type="text"],
.booking-form input[type="number"],
.booking-form select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #bbb;
  border-radius: 5px;
}
.booking-form input[type="submit"] {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 18px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
}

/* WhatsApp Button (Legacy) */
.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 20px;
}

/* Dashboard Widget Table */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th, td {
  text-align: left;
  padding: 8px;
  border-bottom: 1px solid #ccc;
}
th {
  background-color: #edf7ed;
  color: #2f4f2f;
}

/* Kiosk View */
#qr-checkin-area {
  margin-top: 30px;
  background: #e5f3e0;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
}
#qr-checkin-area input {
  padding: 10px;
  width: 70%;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #aaa;
}
#qr-checkin-area button {
  background: #4CAF50;
  color: white;
  padding: 10px 16px;
  margin-left: 10px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Calendar container */
#munglu-calendar {
  margin-top: 30px;
}