body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

.approved-bookings {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: #6b7280;
}

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.section-heading {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-desc {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.btn-primary {
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #b91c1c;
  transform: scale(1.05);
}

.responsive-iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.responsive-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.note {
  font-size: 0.875rem;
  color: #6b7280;
}

footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 1rem;
  user-select: none;
}

footer a {
  color: #d7001f;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
  outline: none;
  color: #ff4a5a;
}

body.dark-mode {
  background-color: #121212;
  color: #ddd;
}

/* .dark-mode .navbar {
  background: rgba(0, 0, 0, 0.75);
  color: #f8f8f8;
} */

#darkModeBtn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #d7001f;
  border: none;
  color: white;
  font-weight: 900;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(215,0,31,0.85);
  z-index: 9999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  user-select: none;
  will-change: transform;
}

#darkModeBtn:hover,
#darkModeBtn:focus {
  background-color: #b5001a;
  outline: none;
  box-shadow: 0 10px 30px rgba(181,0,26,0.95);
  transform: scale(1.05);
}

.dark-mode .card {
  background: #222;
  color: #eee;
  box-shadow: 0 10px 30px rgba(255, 74, 90, 0.25);
}

.dark-mode .card h2 {
  color: red;
  text-align: center;
}

.dark-mode .card p {
  color: white;
}

.approved-bookings {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  color: #1f2937;
}

.approved-bookings.dark-mode {
  background: linear-gradient(to bottom right, #1e1e1e, #121212);
  box-shadow: 0 8px 30px rgba(255, 74, 90, 0.25);
  color: #ddd;
}

.approved-bookings > h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(to right, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-align: center;
}

.approved-bookings ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.approved-bookings li {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 8px solid #ef4444;
}

.approved-bookings li:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.dark-mode .approved-bookings li {
  background-color: #222;
  box-shadow: 0 6px 20px rgba(255, 74, 90, 0.25);
  color: #eee;
  border-left-color: #ff4a5a;
}

.approved-bookings li p:first-child {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
  color: #1f2937;
}

.dark-mode .approved-bookings li p:first-child {
  color: #ff4a5a;
}

.approved-bookings li p:nth-child(2) {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.dark-mode .approved-bookings li p:nth-child(2) {
  color: #bbb;
}

.approved-bookings a {
  display: inline-block;
  background: linear-gradient(to right, #ef4444, #dc2626);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(215, 0, 31, 0.7);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.approved-bookings a:hover,
.approved-bookings a:focus {
  background-color: #b91c1c;
  box-shadow: 0 8px 25px rgba(181, 0, 26, 0.9);
  transform: scale(1.05);
  outline: none;
}

.dark-mode .approved-bookings a {
  box-shadow: 0 6px 20px rgba(255, 74, 90, 0.9);
}

.dark-mode .approved-bookings a:hover,
.dark-mode .approved-bookings a:focus {
  box-shadow: 0 10px 30px rgba(255, 74, 90, 1);
}

#messageText {
  color: black;
}
