@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif; /* Use Poppins as primary UI font */
}

/* NAVIGATION */
/* Mobile-first header: flexible height on small screens, fixed height on desktop via media query */
header {
  background: #281ABC;
  /* Mobile: allow content to determine height and use smaller vertical padding */
  padding: 8px 12px;
  color: #fff;
}

/* Desktop and larger: fixed header height for consistent layout */
@media (min-width: 769px) {
  header {
    padding: 0 20px;
    height: 80px; /* desktop header height */
  }

  /* Make sure inner container centers vertically inside fixed header */
  .nav-container { align-items: center; height: 100%; }

  /* Slightly larger logo on desktop */
  .logo img { width: 45px; height: 45px; }

  /* Login button vertical padding tuned for desktop header */
  .login-btn { padding: 8px 20px; }

  /* Slightly larger profile icon on desktop to match the 80px header */
  #userIconNav img, #userIconNav .user-icon-btn { width: 36px !important; height: 36px !important; }
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'league spartan', sans-serif;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.logo span {
  font-size: 14px; /* Explicit font size for logo text consistency */
  line-height: 1.3;
}

.logo img {
  width: 45px; /* Slightly larger logo for better visibility */
  height: 45px;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 40px;
  font-family: 'league spartan', sans-serif;
  margin-right: 20px;
  font-size: 18px; /* Changed from 'large' to explicit 18px for consistency */
  align-items: center;
  transition: all 0.3s;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px; /* Explicit font size for navbar links */
    transition: font-size 0.3s, padding 0.3s;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; 
  left: 0;
  background: #281ABC;
  list-style: none;
  padding: 8px 0;
  min-width: 180px;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.login-btn {
  border: 1px solid white;
  /* Reduced vertical padding so the button fits within the 57px header */
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 18px; /* Explicit font size for LOGIN button consistency */
  
}
/* === NAVBAR USER ICON (user.html) === */
.user-icon-li {
  display: flex;
  align-items: center;
  padding: 0; /* Removed padding to match LOGIN button height */
}

.user-icon-li img {
  width: 32px; /* Smaller to match navbar height */
  height: 32px; /* Smaller to match navbar height */
}

/* Ensure profile icon size is consistent across pages so navbar heights match */
#userIconNav img, #userIconNav .user-icon-btn {
  width: 32px !important;
  height: 32px !important;
  object-fit: cover;
}

.user-icon-btn {
  width: 32px; /* Reduced to match navbar height */
  height: 32px; /* Reduced to match navbar height */
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.user-icon-btn:hover {
  transform: scale(1.1);
  border-color: #e0e0ff;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  color: white;
  
}

.hero img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  
}

.hero-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}

.hero-text h1 {
  font-size: 90px; 
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: 1; 
  letter-spacing: 2px;
}

.hero-text p {
  margin-top: -10px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  letter-spacing: 2px; 
  text-transform: uppercase;
}
/* Hero-landing */
.hero-landing {
  position: relative;
  text-align: center;
  color: white;
  
}

.hero-landing img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  
}
.hero-landingtext {
  text-align: left;
  padding: 0;
  font-size: 50px;
  margin-left: 100px;
}

.hero-landingtext h1 {
  font-size: 60px; 
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: 1; 
  letter-spacing: 2px;
  margin-top: -300px;
  
}
.hero-landingtext h2 {
  font-size: 60px; 
  font-weight: 700;
  font-family: 'League Spartan', sans-serif;
  text-transform: uppercase;
  margin: 0;
  line-height: 1; 
  letter-spacing: 2px;
  color: #FFCB05;
}
.hero-landingtext p {
  margin-top: 5px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 2px; 
  
}
/* Floating overlapping quick-links card placed just below the navbar */
.floating-card-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px; /* pull card up to overlap hero */
  z-index: 50;
  position: relative;
  height: 200px;
}
.floating-card {
  background: #fff;
  width: 720px;
  max-width: calc(100% - 40px);
  border-radius: 12px;
  padding: 18px 30px;
  display: flex;
  gap: 36px;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 12px 30px rgba(7,18,57,0.12);
  border: 2px solid rgba(34,98,204,0.03);
}
.floating-card .quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.floating-card .quick-item:hover {
  transform: translateY(-5px);
}
.floating-card .quick-item img {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  box-shadow: 0 6px 16px rgba(7,18,57,0.08);
}
.floating-card .quick-label {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #222;
}

/* LOGIN FORM */
.login-section {
  display: flex;
  justify-content: center;
  padding: 30px;
  background: #fff;
  font-family: 'league spartan', sans-serif;
}

.login-form {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

.login-form label {
  font-size: 15px;
  color: #212121;
}

.login-form input {
  background: #f1e9f3;
  box-shadow: inset 0 2px 6px rgba(44,44,255,0.15); 
  border: 1px solid #ccc;
  padding: 8px;
  width: 100%;
  font-size: 16px;
  border-radius: 6px;
}

/* Forgot Password Link */
.forgot-password-link {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 8px;
}

.forgot-password-link a {
  color: #281ABC;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.forgot-password-link a:hover {
  color: #1f1594;
  text-decoration: underline;
}

/* Modal-specific left-aligned forgot link */
.modal-forgot-left {
  text-align: left;
  margin-top: 8px;
  margin-bottom: 8px;
}

.form-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.btn {
  display: inline-block; 
  padding: 10px 0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  width: 150px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(44,44,255,0.15); 
  margin-left: 0 !important;
  margin-bottom: 0; 
  text-align: center; 
  text-decoration: none; 
  color: inherit; 
}

.primary {
  background: #281ABC;
  color: #fff;
  border: none;
}

.secondary {
  background: #fff;
  color: #281ABC;
  border: 1px solid #281ABC;
  box-shadow: 0 2px 8px rgba(44,44,255,0.10); /* outer shadow */
  border-radius: 6px;
  margin-left: 16px;
 
}

/* Ensure anchor buttons show correct focus/hover states */
.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(44,44,255,0.12);
  text-decoration: none;
}

/* Hero Section */
.signup-hero {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.signup-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signup-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.signup-hero-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
}


.signup-hero-text p {
  font-size: 1rem;
}

/* Signup Section */
.signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  
}

.signup-container {
  max-width: 900px;
  width: 100%;
  text-align: center;
  
}

.signup-title {
  color: #281ABC;
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: 'league spartan', sans-serif;
  margin-top: 5px;
}

.signup-subtitle {
  font-size: 20px;
  color: #333;
  font-family: 'poppins', sans-serif;
  margin-bottom: 30px; /* Increased spacing between subtitle and form fields */
}

/* Form layout */
.signup-form {
  width: 100%;
  font-family: 'League spartan', sans-serif;
  margin-top: 0; /* Removed negative margin for proper spacing */
}

.signup-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 15px;
}

/* 3-column layout for first row (First Name, Last Name, Contact Number) */
.signup-row-3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 15px;
}

.signup-row-3col .signup-group {
  width: 100%;
}

.signup-group {
  width: 48%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.signup-group label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.signup-group input {
  padding: 10px;
  border: none;
  outline: none;
  background: #f3eefa;
  border-radius: 6px;
  font-size: 16px;
   box-shadow: inset 0 2px 6px rgba(44,44,255,0.15); 
  font-family: 'League spartan', sans-serif;
  border: 2px solid #ccc;
}

.error-message {
  font-size: 15px;
  color: #d32f2f;
  margin-top: 5px;
  margin-bottom: 8px;
  min-height: 20px;
}

/* ================================
   PHASE 2: AVAILABILITY FEEDBACK
   Real-time validation feedback
================================ */
.availability-feedback {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.availability-feedback.available {
  background-color: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
}

.availability-feedback.unavailable {
  background-color: #ffebee;
  border: 1px solid #f44336;
  color: #c62828;
}

.availability-icon {
  font-size: 18px;
  font-weight: bold;
  min-width: 20px;
  text-align: center;
}

.availability-text {
  flex: 1;
  line-height: 1.4;
}

/* Buttons */
.signup-buttons {
  margin-top: 50px;
  text-align: center;
}

.signup-btn {
  padding: 12px 40px;
  font-size: 0.95rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  background: #281ABC;
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.signup-btn:hover {
  background: #1f1594;
}

/* Already have an account link */
.signup-login-link {
  text-align: center;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

/* ================================
   BEGIN: Tents & Chairs - Additional fields & validation visuals
   (Appended for: purposeOfUse field and quantity 0 behavior)
=================================== */


.form-group .field-note {
  font-size: 12px;
  color: #666;
  margin-top: 4px; /* smaller and tighter under the field */
  order: 3; /* ensures it stays below input even if label or error messages exist */
}


/* Make the entire form-group show a red error state when validation fails */


.form-group.error label {
  color: #d32f2f;
}

/* Small visual tweak for number inputs that allow 0 (clearer affordance) */
input[type="number"][min="0"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

/* END: Tents & Chairs - Additional fields & validation visuals */

.signup-login-link p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

.signup-login-link a {
  color: #281ABC;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.signup-login-link a:hover {
  color: #1f1594;
  text-decoration: underline;
}

/* Custom Alert Styles */
.custom-alert {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  text-align: center;
  min-width: 300px;
  font-family: 'league spartan', sans-serif;
}

.custom-alert.success {
  border-top: 4px solid #281ABC;
}

/* Custom Alert Overlay for modals */
.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.custom-alert-overlay .custom-alert {
  display: block;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 90%;
  width: 500px;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
  animation: slideUp 0.3s ease;
}

.custom-alert-header {
  padding: 24px 28px 20px 28px;
  border-bottom: 1px solid #e5e7eb;
}

.custom-alert-header h2 {
  margin: 0;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
}

.custom-alert-body {
  padding: 24px 28px;
}

.custom-alert-actions {
  padding: 20px 28px 24px 28px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.custom-alert-btn-primary,
.custom-alert-btn-secondary {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-alert-btn-primary {
  background: linear-gradient(135deg, #281abc 0%, #1a0e7a 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(40, 26, 188, 0.3);
}

.custom-alert-btn-primary:hover {
  background: linear-gradient(135deg, #1f1594 0%, #150b5e 100%);
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.4);
  transform: translateY(-1px);
}

.custom-alert-btn-secondary {
  background: white;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

.custom-alert-btn-secondary:hover {
  background: #f9fafb;
  color: #374151;
  border-color: #9ca3af;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-message {
  margin: 10px 0 20px;
  font-size: 18px;
  color: #333;
}

.alert-button {
  padding: 8px 24px;
  background: #281ABC;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'league spartan', sans-serif;
}

.alert-button:hover {
  background: #1f1594;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* Password Strength Indicator */
.password-strength-container {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

#password-strength {
  font-weight: bold;
  margin-bottom: 5px;
}

/* Validation styles - only shown after form submission */
input.error {
  border-color: #d32f2f !important;
}

/* CALENDAR SECTION STYLES */
.calendar-section {
  background: #fff;
  padding: 40px 0 60px 0;
  text-align: center;
}
.calendar-Title {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.calendar-desc {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 32px;
}
.calendar-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 18px;
  flex-wrap: wrap;
  
}
.calendar-link-wrapper {
  text-decoration: none;
  color: inherit; 
}

/* Your existing CSS for the card */
.calendar-card {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 12px;
  box-shadow: 2px 4px 4px #eee;
  width: 540px;
  height: 250px;
  padding: 24px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
}
.calendar-card:hover {
  box-shadow: 0 8px 24px #d1d1ff;
  border: 2px solid #281abc;
}
.calendar-img {
  width: 180px;
  height: 180px;
  margin-bottom: 18px;
}
.calendar-label-main {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 2px;
}
.calendar-label-sub {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
}

/*SERVICES SECTION STYLES */
.services-section {
  
  padding: 48px 0 60px 0;
  text-align: center;
}
.services-title {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.services-desc {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 32px;
}
.services-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.service-card-wrapper {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 580px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-wrapper:hover {
  transform: translateY(-8px);
}

.service-card-wrapper:hover .service-card {
  box-shadow: 0 12px 30px rgba(40, 26, 188, 0.2);
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 2px 4px 12px #e0d6f7;
  width: 100%;
  height: 570px;
  padding: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.service-info {
  padding: 18px 24px 0 24px;
  text-align: left;
  width: 90%;
  margin-left: -10px;
}
.service-label-main {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  margin-left: 10px;
}
.service-label-desc {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  margin-left: 10px;
}
.service-btn {
  display: inline-block;
  background: #281abc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 8px #d1d1ff;
  transition: background 0.2s, color 0.2s;
  margin-left: 10px;
  text-decoration: none;
}

.service-card-wrapper:hover .service-btn,
.service-btn:hover,
.service-btn:focus {
  background: #fff;
  color: #281abc;
  border: 2px solid #281abc;
}

/* === SERVICES SECTION IMAGE CENTERING === */
.service-img-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.service-img {
  width: 500px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  margin-top: 44px;
  box-shadow: 0 2px 8px #e0d6f7;
}
/* === ABOUT THE BARANGAY SECTION (user.html) === */
.about-section {
  padding: 48px 0 48px 0;
  text-align: center;
}
.about-title {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.about-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.about-img {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px #e0d6f7;
}
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text p {
  color: #222;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.about-btn {
  background: #281abc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 8px #d1d1ff;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  text-align: center;
}
.about-btn:hover, .about-btn:focus {
  background: #fff;
  color: #281abc;
  border: 2px solid #281abc;
}

/* === CONTACT US SECTION (user.html) === */
.contact-section {
  padding: 48px 0 48px 0;
  text-align: center;
}
.contact-title {
  color: #281abc;
  font-family: 'League Spartan', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.contact-content {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 700px;
  margin: 0 auto 32px auto;
}
.contact-box {
  width: 420px; 
  height: 150px;  
  background: #fff;
  flex: 1;
  padding: 32px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #222;
  text-align: left;
  box-shadow: 0 2px 8px #e0d6f7;
}

.contact-box-left {
  border-radius: 12px 0 0 12px;
  border-right: 2px solid #f3ecfa;
  background-color: #281ABC;
  color: #fff;
}
.contact-box-right {
  border-radius: 0 12px 12px 0;
}
.contact-btn {
  background: #281abc;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 8px #d1d1ff;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.contact-btn:hover, .contact-btn:focus {
  background: #fff;
  color: #281abc;
  border: 2px solid #281abc;
}

/* FOOTER */
footer {
  color: white;
  padding: 20px;
  /* use svg placeholder if actual photo unavailable */
  background-image: url('Assets/Hall.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 360px;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  margin-left: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 450px;
  margin-left: 30px;
}

.footer-logo img {
  width: 80px;
  height: auto;
}

.footer-logo p {
  margin: 0;
  font-size: 25px;
  font-family: 'league spartan', sans-serif;
  font-style: bold;
}


.footer-links h3 {
  margin-bottom: 10px;
  font-size: 30px;
  font-family: 'league spartan', sans-serif;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.footer-links li {
  font-size: 20px;
  margin-top: 5px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.footer-links p {
  font-size: 20px;
  margin: 5px 0;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom {
  text-align: center;
  font-size: 20px;
}

/* USER PROFILE PAGE LAYOUT */
.user-profile-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.user-profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 24px;
}



.user-profile-name {
  font-size: 2.2rem;
  font-family: 'League Spartan', sans-serif;
  color: #281abc;
  font-weight: bold;
  margin: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.user-profile-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.edit-profile-btn {
  background: #fff;
  color: #281abc;
  border: 2px solid #d9d9d9;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* prevent text wrapping */
  box-sizing: border-box; /* make borders part of the element size */
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
  
}

.change-password-btn {
  background: #281abc;
  color: #fff;
  /* keep a consistent border width so hover doesn't change layout */
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 22px;
  font-size: .9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap; /* prevent text wrapping */
  box-sizing: border-box; /* make borders part of the element size */
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

/* ============================================
   NOTIFICATION BELL ICON & BADGE
   ============================================ */

.notification-bell {
  position: relative;
  margin-right: 8px;
}

.bell-btn {
  background: transparent;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.bell-btn:hover {
  background-color: rgba(40, 26, 188, 0.08);
  border-color: rgba(40, 26, 188, 0.2);
}

.bell-btn:active {
  transform: scale(0.95);
}

.bell-icon {
  font-size: 1.5rem;
  display: block;
  line-height: 1;
  transition: transform 0.2s ease;
}

.bell-btn:hover .bell-icon {
  transform: rotate(15deg);
  animation: bellRing 0.5s ease;
}

@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(15deg); }
  50% { transform: rotate(-15deg); }
  75% { transform: rotate(10deg); }
}

.notification-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #d32f2f;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 0.7rem;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  min-width: 18px;
  text-align: center;
  line-height: 1.3;
  display: none; /* Hidden by default */
  box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.notification-badge.active {
  display: block;
}

.notification-badge.pulse {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { 
    transform: scale(1); 
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
  }
  50% { 
    transform: scale(1.1); 
    box-shadow: 0 3px 6px rgba(211, 47, 47, 0.5);
  }
}

/* ============================================
   NOTIFICATION BANNERS (Inline Alerts)
   ============================================ */

.notification-banners {
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.notification-banner {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid #f39c12;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(243, 156, 18, 0.15);
  animation: slideDownBanner 0.3s ease-out;
}

@keyframes slideDownBanner {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpBanner {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.notification-banner.urgent {
  background: linear-gradient(135deg, #fee 0%, #fdd 100%);
  border-left-color: #d32f2f;
}

.notification-banner-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.notification-banner-content {
  flex-grow: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.notification-banner-content strong {
  color: #281abc;
  font-weight: 600;
}

.notification-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.notification-banner-actions button {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.notification-banner-actions .banner-view-btn {
  background: #281abc;
  color: white;
}

.notification-banner-actions .banner-view-btn:hover {
  background: #1a0e7a;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(40, 26, 188, 0.2);
}

.notification-banner-actions .banner-dismiss-btn {
  background: white;
  color: #666;
  border: 1px solid #ddd;
}

.notification-banner-actions .banner-dismiss-btn:hover {
  background: #f5f5f5;
  border-color: #999;
  transform: translateY(-1px);
}

/* ========================================
   PASSWORD TOGGLE (EYE ICON) STYLES
   ======================================== */
.password-wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.password-wrapper input {
  /* Don't override width or box-sizing - let it inherit from .login-form input */
  padding-right: 8px !important; /* Match email padding exactly - icon will overlap */
}

.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  z-index: 10; /* Ensure it's above the input */
  color: #6b7280; /* Gray color for the icon */
}

.password-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.password-toggle:focus {
  outline: 2px solid rgba(99, 102, 241, 0.4);
  background-color: rgba(99, 102, 241, 0.05);
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  display: block;
  color: #6b7280;
  transition: color 0.2s ease;
}

.password-toggle:hover svg {
  color: #374151;
}

/* Toggle icon visibility based on state */
.password-toggle .icon-hide {
  display: none !important;
}

.password-toggle[aria-pressed="true"] .icon-hide {
  display: block !important;
}

.password-toggle[aria-pressed="true"] .icon-show {
  display: none !important;
}

/* Password wrapper for signup form and modals - reduce padding for icon overlay */
.signup-group .password-wrapper input,
.form-group .password-wrapper input {
  width: 100% !important; /* Fill the wrapper */
  box-sizing: border-box !important; /* Include padding in width calculation */
  padding-right: 40px !important; /* Space for icon */
}


/* Responsive adjustments for notifications */
@media (max-width: 768px) {
  .bell-btn {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  
  .bell-icon {
    font-size: 1.3rem;
  }
  
  .notification-badge {
    top: 4px;
    right: 4px;
    font-size: 0.65rem;
    min-width: 16px;
  }
  
  .notification-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .notification-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ========================================
   PROFILE TABS NAVIGATION (STRATEGY 3)
   ======================================== */

.profile-tabs {
  display: flex;
  gap: 8px;
  max-width: 900px;
  margin: 0 auto 24px auto;
  background: white;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-tab {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.profile-tab:hover {
  background: #f5f5f5;
  color: #281abc;
}

.profile-tab.active {
  background: linear-gradient(135deg, #281abc 0%, #1a0e7a 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.25);
}

.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: #d32f2f;
  color: white;
  border-radius: 11px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.profile-tab.active .tab-badge {
  background: white;
  color: #281abc;
}

.tab-badge:empty,
.tab-badge[data-count="0"] {
  display: none;
}

/* ========================================
   TAB CONTENT PANES
   ======================================== */

.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-profile-content {
  /* Changed from grid to block for tab layout */
  display: block;
  width: 100%;
  max-width: 900px;
}

/* Tab 1 (Personal Info) - Keep centered card */
#infoTab .user-info-card {
  max-width: 600px;
  margin: 0 auto;
}

/* Tab 2 (Requests) - Full width */
#requestsTab .user-request-status {
  width: 100%;
}

/* ========================================
   NOTIFICATIONS PANEL (TAB 3)
   ======================================== */

.notifications-panel {
  background: white;
  border: 2px solid #d9d9d9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(44,44,255,0.08);
  display: flex;
  flex-direction: column;
  /* Match the fixed container pattern from requests tab */
}

.notifications-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.notifications-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem;
  color: #281abc;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mark-all-read-btn {
  padding: 8px 16px;
  background: transparent;
  border: 1.5px solid #281abc;
  border-radius: 6px;
  color: #281abc;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
  background: #281abc;
  color: white;
}

.mark-all-read-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: #ccc;
  color: #ccc;
}

/* ========================================
   NOTIFICATION FILTERS
   ======================================== */

.notifications-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.notif-filter-btn {
  padding: 10px 18px;
  background: white;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-filter-btn:hover {
  border-color: #281abc;
  color: #281abc;
}

.notif-filter-btn.active {
  background: #281abc;
  border-color: #281abc;
  color: white;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: #f0f0f0;
  color: #666;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.notif-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ========================================
   NOTIFICATIONS LIST
   ======================================== */

.notifications-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* Match the fixed height pattern from request-cards */
  height: 400px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 16px;
}

.notifications-list:empty::after {
  content: 'No notifications yet';
  display: block;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

/* Individual Notification Item */
.notification-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

.notification-item:hover {
  border-color: #281abc;
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.1);
  transform: translateX(4px);
}

.notification-item.unread {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  border-left: 4px solid #281abc;
}

.notification-item.unread::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: #d32f2f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}

/* Notification Icon */
.notification-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  background: #f5f5f5;
}

.notification-item.unread .notification-icon {
  background: linear-gradient(135deg, #281abc 0%, #1a0e7a 100%);
}

.notification-icon.type-reminder {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.notification-icon.type-status {
  background: linear-gradient(135deg, #d4f4dd 0%, #b8e6c3 100%);
}

.notification-icon.type-message {
  background: linear-gradient(135deg, #d1ecf1 0%, #b8dfe5 100%);
}

/* Notification Content */
.notification-content {
  flex: 1;
  min-width: 0; /* Allows text truncation */
}

.notification-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 6px 0;
}

.notification-item.unread .notification-title {
  color: #281abc;
}

.notification-message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.notification-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #999;
}

.notification-type-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #f0f0f0;
  border-radius: 4px;
  font-weight: 500;
  color: #666;
}

.notification-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Notification Actions */
.notification-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 12px;
  border-left: 1px solid #e0e0e0;
}

.notification-action-btn {
  padding: 6px 14px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.notification-action-btn:hover {
  background: #f5f5f5;
  border-color: #281abc;
  color: #281abc;
}

.notification-action-btn.mark-read {
  color: #1e7e34;
  border-color: #1e7e34;
}

.notification-action-btn.mark-read:hover {
  background: #d4f4dd;
}

.notification-action-btn.view-request {
  color: #281abc;
  border-color: #281abc;
}

.notification-action-btn.view-request:hover {
  background: #f0f4ff;
}

.notification-action-btn.delete {
  color: #d32f2f;
  border-color: #d32f2f;
}

.notification-action-btn.delete:hover {
  background: #fee;
}

/* ========================================
   RESPONSIVE DESIGN FOR TABS & NOTIFICATIONS
   ======================================== */

@media (max-width: 768px) {
  .profile-tabs {
    flex-direction: column;
    gap: 6px;
  }
  
  .profile-tab {
    width: 100%;
  }
  
  .notifications-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .notifications-filter {
    flex-wrap: wrap;
  }
  
  .notification-item {
    flex-direction: column;
  }
  
  .notification-actions {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-left: 0;
    padding-top: 12px;
  }
  
  .notification-action-btn {
    flex: 1;
  }
}

/* Keep existing user-info-card and user-request-status styles below */



.user-info-card {
  background: #fff;
  border: 2px solid #d9d9d9;
  border-radius: 12px;
  padding: 28px 32px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(44,44,255,0.08);
  min-width: 320px;
  display: flex;
  flex-direction: column;
}

.user-info-card h2 {
  font-size: 1.3rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: bold;
  margin-bottom: 18px;
  color: #281abc;
}

.info-item {
  margin-bottom: 14px;
}
.info-label {
  font-weight: bold;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.info-value {
  font-size: 1rem;
  color: #222;
}

.user-request-status {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.request-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.request-status-header h2 {
  font-size: 1.3rem;
  font-family: 'League Spartan', sans-serif;
  font-weight: bold;
  color: #281abc;
  margin: 0;
}

.request-filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.request-filters label {
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-weight: 500;
}

/* New inline filter layout next to Make New Request button */
.request-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.request-filters-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.request-filters-inline label {
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-weight: 500;
}

.filter-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 180px;
}

.filter-select:hover {
  border-color: #281abc;
}

.filter-select:focus {
  outline: none;
  border-color: #281abc;
  box-shadow: 0 0 0 3px rgba(40, 26, 188, 0.1);
}

.view-all-requests {
  font-size: 0.95rem;
  color: #281abc;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  margin-left: 18px;
}

.request-cards {
  margin-bottom: 16px;
  padding-top: 20px; /* Space for notification badge that appears above cards */
  padding-right: 8px;
  height: 400px; /* Fixed height to prevent layout shift */
  overflow-y: auto; /* Always allow scrolling if content exceeds height */
  display: flex;
  flex-direction: column;
}

/* Empty state should fill the container and center content */
.request-cards .empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  flex: 1; /* Take up full height of container */
}

.request-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.request-card:hover {
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.1);
  border-color: #281abc;
}

.request-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.request-card-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.request-card-body {
  margin-bottom: 8px;
}

.request-card-body p {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
}

.request-timestamp {
  font-size: 0.75rem !important;
  color: #999 !important;
  margin-top: 8px !important;
  font-style: italic;
}

.request-card-footer {
  display: flex;
  justify-content: flex-end;
}

.view-details-link {
  color: #281abc;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s ease;
}

.view-details-link:hover {
  color: #1a0f7a;
  text-decoration: underline;
}

/* Status Badges */
.status-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  text-transform: capitalize;
}

.status-badge.status-approved {
  background: #d4f4dd;
  color: #1e7e34;
}

.status-badge.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-badge.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.status-rejected {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.status-in-progress {
  background: #d1ecf1;
  color: #0c5460;
}

.status-badge.status-completed {
  background: #e2d4f7;
  color: #5a2e8b;
}

/* Enhanced Empty State */
.empty-state {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 10px 0;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.6;
}

.empty-state-title {
  font-size: 1.3rem;
  font-family: 'League Spartan', sans-serif;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
}

.empty-state-text {
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.empty-state-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.empty-state-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #fff;
  color: #281abc;
  text-decoration: none;
  border: 2px solid #281abc;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.12s ease;
  cursor: pointer;
  white-space: nowrap;
}

.empty-state-btn:hover {
  background: #281abc;
  color: #fff;
  transform: translateY(-1px);
}

/* Request Details Modal */
.request-details-modal {
  max-width: 600px;
  max-height: 90vh;
  padding: 30px;
  overflow-y: auto;
}

.request-details-modal h2 {
  color: #281abc;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'League Spartan', sans-serif;
}

.request-details-content {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row.status-row {
  padding: 16px 0;
  border-bottom: 2px solid #e0e0e0;
}

.detail-label {
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

.detail-value {
  color: #666;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  text-align: right;
  max-width: 60%;
  word-wrap: break-word;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  margin-top: 10px;
}

.cancel-request-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}

.cancel-request-btn:hover {
  background: #c82333;
}

.cancel-request-btn:active {
  background: #bd2130;
}

.close-details-btn {
  background: #281abc;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.2s ease;
}

.close-details-btn:hover {
  background: #1a0f7a;
}

/* Cancellation Deadline Warning Badges */
.cancellation-deadline-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-top: 8px;
  text-align: center;
}

.cancellation-deadline-badge.available {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.cancellation-deadline-badge.warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeaa7;
}

.request-title {
  font-weight: bold;
  font-size: 1.15rem;
  color: #222;
  font-family: 'League Spartan', sans-serif;
}
.request-status {
  font-size: 1rem;
  font-weight: 600;
  padding: 4px 18px;
  border-radius: 8px;
  margin-left: 12px;
  display: inline-block;
}
.request-status.approved {
  background: #eafbe7;
  color: #2e8b57;
}
.request-status.pending {
  background: #fffbe7;
  color: #bfa100;
}
.request-details {
  font-size: 0.98rem;
  color: #888;
  margin-bottom: 2px;
  font-family: 'Poppins', sans-serif;
}

.make-request-btn {
  background: #281abc;
  color: #fff;
  /* keep a consistent border so hover doesn't change layout */
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 38px;
  font-size: 1.08rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
  align-self: flex-end;
  border-radius: 6px 6px 0 0;
  box-sizing: border-box; /* include border in width calculations */
  width: 100%;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

/* Custom dropdown (user profile card) overrides */
.custom-dropdown {
  position: relative; /* ensure absolute menu is positioned to this container */
  width: 100%;
  max-width: 420px; /* prevents overly wide menu on large screens */
  z-index: 100;
}

.custom-dropdown .make-request-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Caret replaced with inline SVG for crisper rendering; supports rotation on open */
.custom-dropdown .make-request-btn .dropdown-caret {
  display: inline-block;
  margin-left: 10px;
  transition: transform 180ms ease;
  transform-origin: center;
  vertical-align: middle;
}

/* Rotate caret when dropdown is open (hover or focus-within) */
.custom-dropdown:hover .dropdown-caret,
.custom-dropdown:focus-within .dropdown-caret {
  transform: rotate(180deg);
}

/* Dropdown menu aligned to button width and visually distinct */
.custom-dropdown .dropdown-menu {
  display: none; /* shown on hover of parent */
  position: absolute;
  top: calc(100% - 2px); /* slightly overlap to avoid 1px gap */
  left: 0;
  width: 100%; /* match button width exactly */
  background: #ffffff;
  list-style: none;
  padding: 6px 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 10px 30px rgba(6, 18, 69, 0.12);
  z-index: 1200;
  box-sizing: border-box;
}

/* Show when hovering parent (keeps visible while moving from button to menu) */
.custom-dropdown:hover .dropdown-menu,
.custom-dropdown:focus-within .dropdown-menu {
  display: block;
}

.custom-dropdown .dropdown-menu li a {
  display: block;
  padding: 14px 20px;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

/* Slightly darker hover for clarity (tad bit darker as requested) */
.custom-dropdown .dropdown-menu li a:hover {
  background: #eef2ff; /* subtle pale blue */
  color: #281ABC;
}

/* Prevent layout shifts when hover border appears */
.custom-dropdown .make-request-btn,
.custom-dropdown .make-request-btn:hover {
  border-width: 2px; /* keep the same border width on hover */
}

/* CONTACT PAGE STYLES*/
.contact-page {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: #281abc;
  margin-bottom: 20px;
  font-family: 'League Spartan', sans-serif;
}

.contact-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-family: 'Poppins', sans-serif;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  width: 550px;
  height: 150px;
  transition: transform 0.3s ease;
 
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  padding: 20px;
}

.contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-info {
  flex: 1;
}

.contact-label {
  font-weight: bold;
  color: #281abc;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-family: 'League Spartan', sans-serif;
}

.contact-details {
  color: #000000;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 5px;
}

.contact-details li:last-child {
  margin-bottom: 0;
}

/* USER PROFILE PAGE STYLES */
/* Profile Hero - Same format as calendar */
.profile-hero {
  position: relative;
  height: 200px; /* Reduced from 280px */
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.profile-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center/cover;
  opacity: 1;
  z-index: 1;
}

.profile-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.profile-hero-text h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.profile-hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

.profile-main-content {
    padding: 50px 20px;
    background-color: #f9faff; /* A very light blue/gray background */
    font-family: 'Poppins', sans-serif;
}

.profile-card-container {
    max-width: 1200px;
    margin: -100px auto 0 auto; /* Pulls the card up to overlap the hero */
    position: relative;
    z-index: 50;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7, 18, 57, 0.12);
    padding: 30px;
}

/* Profile Header Section (Avatar, Name, Buttons) */
.profile-header-section {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 3px solid #281ABC;
    flex-shrink: 0;
    object-fit: cover;
}

.profile-name {
    font-family: 'League Spartan', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    flex-grow: 1;
}

.profile-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.profile-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

/* Profile Details Grid Layout */
.profile-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Makes the request status card wider */
    gap: 30px;
}

/* Shared Card Styles */
.info-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #281ABC;
    margin-bottom: 20px;
}

/* Personal Information Card Specifics */
.personal-info-card .info-group {
    margin-bottom: 18px;
}

.personal-info-card .info-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

.personal-info-card .info-value {
    font-size: 1rem;
    color: #555;
}

/* Request Status Card Specifics */
.request-status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.view-all-requests {
    font-size: 0.9rem;
    font-weight: bold;
    color: #281ABC;
    text-decoration: none;
}
.view-all-requests:hover {
    text-decoration: underline;
}

.request-item {
    background: #f9faff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e8e8e8;
}

.request-details {
    display: flex;
    flex-direction: column;
}

.request-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
}

.request-meta, .request-purpose, .request-quantity {
    font-size: 0.9rem;
    color: #666;
    margin-top: 4px;
}

.request-status-badge {
    padding: 5px 12px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.request-status-badge.approved {
    background-color: #d4edda;
    color: #155724;
}

.request-status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.request-status-badge .view-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: #281ABC;
    text-decoration: underline;
}

.make-new-request-btn {
    margin-top: auto; /* Pushes button to the bottom if card has extra space */
    padding-top: 12px;
    padding-bottom: 12px;
}

/* UserProfile.html button hover effects */
.edit-profile-btn:hover,
.change-password-btn:hover,
.make-request-btn:hover {
  background: #fff;
  color: #281abc;
  border: 2px solid #281abc;
}

/* --- ABOUT PAGE STYLES --- */
/* --- FOOTER LINK STYLES --- */
footer a {
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
footer a:hover {
  color: #FFCB05;
}
.about-hero {
  position: relative;
  height: 200px; /* Reduced from 280px */
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center/cover;
  opacity: 1;
  z-index: 1;
}

.about-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.about-hero-text h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

/* Contact Hero - Same format as calendar */
.contact-hero {
  position: relative;
  height: 200px; /* Reduced from 280px */
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center/cover;
  opacity: 1;
  z-index: 1;
}

.contact-hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.contact-hero-text h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-hero-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

.history-section {
  padding: 40px 20px;
  background: #fff;
}

.history-section .about-content {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
  justify-content: center;
}

.history-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.history-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.history-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center text */
}

.history-text h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.6rem;
  color: #281ABC;
  margin-bottom: 15px;
}

.history-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
  text-align: justify;
}

.history-text p:last-child {
  margin-bottom: 0;
}

/* Conference Room Form Time Input Styles */
.time-group {
  display: flex;
  flex-direction: column;
}

.time-inputs {
  display: flex;
  align-items: center;
  gap: 15px;
}

.time-separator {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  user-select: none;
}

.time-errors {
  display: flex;
  gap: 15px;
}

.time-errors .error-message {
  flex: 1;
}

/* Media query for larger screens */
@media (min-width: 768px) {
  .history-section .about-content {
    display: flex;
    flex-direction: row; /* Changed from column to row */
    align-items: center; /* Vertically center text and image */
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
  }

  .about-section history-section .about-content.reverse {
    flex-direction: row-reverse;
  }

  .history-image {
    flex: 1;
    max-width: 50%;
  }

  .history-text {
    flex: 1;
    padding-top: 20px;
  }
  .history-text h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

/* Add separator between sections */
.history-section + .history-section {
  border-top: 1px solid #eee;
  margin-top: 20px;
  padding-top: 40px;
}

.mission-vision-section {
  padding: 60px 20px;
  background: #fff;
}

.mission-vision-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-box, .vision-box {
  flex: 1;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-box {
  background: #281ABC;
}

.vision-box {
  background: #FFCB05;
}


/* Restore bold white header style for the Mission/Vision boxes (new .mv-header) */
.mission-box .mv-header,
.vision-box .mv-header {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.6rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

/* Make the descriptive text in the mission/vision boxes readable on both backgrounds */
.mission-box .mv-text,
.mission-box .mv-placeholder {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}
.vision-box .mv-text,
.vision-box .mv-placeholder {
  color: #000; /* darker text on yellow background for readability */
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
}

.officials-section {
  padding: 60px 20px;
  background: #fff;
}

.officials-section h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.5rem;
  color: #281ABC;
  text-align: center;
  margin-bottom: 40px;
}

.officials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.official-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.official-card:hover {
  transform: translateY(-5px);
}

.official-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.official-info {
  padding: 20px;
  text-align: center;
}

.official-info h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  color: #281ABC;
  margin-bottom: 5px;
}

.official-info p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
}

.main-official {
  grid-column: 1 / -1;
  max-width: 500px;
  margin: 0 auto 20px;
}

/* Center the bottom three officials (Secretary, Treasurer, SK) */
.officials-bottom {
  grid-column: 1 / -1; /* span full width of grid */
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: stretch;
  padding: 20px 0 0 0;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
}

.officials-bottom .official-card {
  max-width: 300px; /* slightly larger for better readability */
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 6px;
}

.officials-bottom .official-card img {
  height: 210px;
  object-fit: cover;
}

/* Stack centered on small screens */
@media (max-width: 600px) {
  .officials-bottom {
    justify-content: center;
    gap: 18px;
  }
  .officials-bottom .official-card {
    max-width: 360px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mission-vision-container {
    flex-direction: column;
  }
  
  .mission-box, .vision-box {
    max-width: 100%;
  }
  
  .officials-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-hero-text h1 {
    font-size: 2.5rem;
  }
}

/* ================================================
   CONFERENCE ROOM CALENDAR PAGE STYLES
   Add this to your style.css file
================================================ */

/* Calendar Hero Section */
.calendar-hero {
  position: relative;
  height: 200px; /* Reduced from 280px */
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.calendar-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center/cover;
  opacity: 1;
  z-index: 1;
}

.calendar-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.calendar-hero-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.calendar-hero-content .highlight-yellow {
  color: #FFCB05;
}

.calendar-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
}

/* Calendar Container */
.calendar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 50px 0;
  position: relative;
  background: white;
}

/* Calendar Top Bar - Contains Back Button, Legend, Month, and Today Button */
.calendar-top-bar {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  align-items: center;
  padding: 30px 40px;
  position: relative;
  z-index: 10;
  background: white;
  max-width: 1400px;
  margin: 0 auto;
}

/* Back to Dashboard Button (Top Left) */
.calendar-back-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.back-to-dashboard-btn {
  background: #281ABC;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(40, 26, 188, 0.3);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.back-to-dashboard-btn:hover {
  background: #1a0e7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(40, 26, 188, 0.4);
}

.back-arrow {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

.back-text {
  text-align: left;
  line-height: 1.3;
}

.legend-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #000;
}

.legend-booked {
  background-color: #FFCB05;
}
/* Legend (Below Back Button) */
.legend-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #222;
  padding-left: 5px;
  padding-top: 80px;
}

/* Center Section - Month Display */
.calendar-center-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 90px;
}

.calendar-month-display {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.2rem;
  color: #222;
  margin: 0;
  font-weight: 700;
  text-align: center;
  min-width: 200px;
}

/* Right Section - Today Button */
.calendar-right-section {
  display: flex;
  align-items: flex-start;
}

.today-button {
  background: white;
  color: #222;
  border: 2px solid #ddd;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.today-button:hover {
  border-color: #281ABC;
  background: #f9f9ff;
  transform: translateY(-2px);
}

.today-icon {
  font-size: 1.1rem;
}

.today-arrow {
  font-size: 0.7rem;
  margin-left: 4px;
}


/* Navigation Controls - REMOVED (functionality moved to Today controls) */

/* Calendar Grid */
.calendar-grid {
  background: white;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: 2px solid #000;
  max-width: 1400px;
  width: 96%;
  margin: 15px auto 20px auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto;
}

.calendar-day-header {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  padding: 18px 8px;
  background: white;
  border-bottom: 2px solid #000;
  border-right: 1px solid #ccc;
}

.calendar-day-header:last-child {
  border-right: none;
}

#calendarDates {
  display: contents;
}

.calendar-date {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 14px 12px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  min-height: 120px;
  background: white;
  overflow: visible;
}

/* Remove right border from last column (7th items) */
.calendar-date:nth-child(7n+7) {
  border-right: none;
}

/* Remove bottom border from last row */
.calendar-date:nth-last-child(-n+7) {
  border-bottom: none;
}

.calendar-date .date-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
  line-height: 1;
}

.calendar-date.empty {
  background: white;
  cursor: default;
}

.calendar-date.available:hover {
  background: #f8f8ff;
  box-shadow: inset 0 0 0 3px #281ABC;
  z-index: 10;
}

.calendar-date.booked {
  background: #FFCB05;
  cursor: default;
}

.calendar-date.booked .date-number {
  color: #000;
}

/* Has bookings styling - Partially booked (still has 4+ hour slot) */
.calendar-date.has-bookings:not(.fully-booked) {
  background: white;
  border: 2px solid #e5e7eb;
  cursor: pointer;
}

.calendar-date.has-bookings:not(.fully-booked):hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Fully booked styling - No 4-hour continuous slot available */
.calendar-date.fully-booked {
  background: #fef08a;
  border: 2px solid #eab308;
  cursor: not-allowed;
}

.calendar-date.fully-booked:hover {
  background: #fef08a;
  transform: none;
}

.calendar-date.today {
  /* Primary today styling: blue background tint + solid blue border */
  background: #dbeafe;
  border: 2px solid #3b82f6 !important; /* make this harder to override */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
  position: relative; /* ensure z-index works */
  z-index: 20; /* lift above neighboring tiles */
}

/* Strong visual for the date number inside today's tile */
.calendar-date.today .date-number {
  color: #1d4ed8;
  font-weight: 700;
}

/* If today happens to also be fully-booked, keep the blue outline but show booked background */
.calendar-date.today.fully-booked {
  background: #fef08a;
  border: 2px solid #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

/* Fallback overlay: draw an outline using a pseudo-element in case other rules strip borders */
/* .calendar-date.today::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 4px; /* keep a small inset so border doesn't overlap content */
  /* border: 2px solid rgba(59,130,246,0.95);
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
} */

.booking-label {
  font-size: 0.8rem;
  color: #000;
  font-weight: 600;
  margin-top: 8px;
  text-align: left;
  word-wrap: break-word;
  line-height: 1.2;
}

/* Booking Preview Banner (Purpose + Time) - Purple background matching legend */
.tents-booking-preview {
  margin-top: 6px;
  padding: 6px 8px;
  background: #5b21b6;
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

/* Hover state for clickable preview */
.tents-booking-preview:hover {
  background: #6d28d9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

/* Focus state for keyboard navigation */
.tents-booking-preview:focus {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
  background: #6d28d9;
}

/* Active state (when clicking) */
.tents-booking-preview:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.tents-preview-purpose {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tents-preview-time {
  font-weight: 500;
  color: #e9d5ff;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tents & Chairs: Informational preview (not blocking) */
.calendar-date.has-bookings-info {
  background: white;
  border: 2px solid #e5e7eb;
}

.calendar-date.has-bookings-info:hover {
  background: #f9fafb;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.calendar-date.past {
  background: #fafafa;
  color: #999;
  cursor: not-allowed;
}

.calendar-date.past .date-number {
  color: #ccc;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: #fff;
  margin: 6% auto;
  padding: 36px 44px 100px 44px; /* Increased bottom padding for button space */
  border: none;
  border-radius: 12px;
  width: 92%;
  max-width: 820px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.4s ease;
  position: relative;
  min-height: 200px;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll animation keyframes (used on about.html and user.html) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

/* Utility classes to mark elements for scroll-triggered animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.animate-on-scroll.animated {
  animation: fadeInUp 0.8s ease-out forwards;
}

.modal-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.8rem;
  color: #281ABC;
  margin-bottom: 25px;
  font-weight: 700;
}

.close-modal {
  background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.08s;
}

.close-modal:hover {
  background: #e6edfa;
  color: #1742a0;
}

/* Modal Button Styles - Updated to match provided design */
.save-changes {
  background: #0b3b8c; /* deep blue to match brand */
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.18s, transform 0.08s;
}
.save-changes:hover {
  background: #08306a;
}

/* Modal buttons container to align and equalize button sizes */
.modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
}
.modal-buttons .close-modal,
.modal-buttons .save-changes {
  min-width: 140px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Toast styling override (complements inline styles set in script.js) */
#top-right-toast-container {
  position: fixed !important;
  top: 18px !important;
  right: 18px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.tr-toast {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #0b3b8c;
  background: #ffffff;
  border-left: 4px solid #0b3b8c;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(11,59,140,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

/* Spinner inside buttons spacing */
.btn-spinner {
  margin-right: 8px;
}

/* Form Styles */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #f9f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #281ABC;
  background: white;
}

.form-group input[readonly] {
  background: #e8e8ff;
  color: #281ABC;
  font-weight: 600;
  cursor: not-allowed;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.month-nav-btn {
  background: #281ABC;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(40, 26, 188, 0.3);
  padding: 0;
  line-height: 1;
}

.month-nav-btn:hover {
  background: #1a0e7a;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.4);
}

/* ================================================
   TENTS & CHAIRS REQUEST FORM STYLES
   Add this to your style.css file
================================================ */

/* Request Form Hero Section */
.request-hero {
  position: relative;
  height: 200px; /* Reduced from 280px */
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.request-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center/cover;
  opacity: 1;
  z-index: 1;
}

.request-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 20px;
}

.request-hero-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.5rem; /* Increased from 3rem to match calendar */
  font-weight: 700; /* Changed from 750 to match calendar */
  margin: 0 0 15px 0; /* Increased bottom margin from 10px to 15px */
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.breadcrumb {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; /* Increased from 0.9rem to match calendar */
  margin: 0;
  font-weight: 400;
  letter-spacing: 1px;
  color: white;
}

/* Request Form Section */
.request-form-section {
  display: flex;
  justify-content: center; /* Centers the whole content horizontally */
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 30px;
  background: white;
  position: relative;
}

/* Sidebar with Back Button */
.request-form-sidebar {
  position: absolute;
  left: 40px; /* keeps sidebar to the left edge */
  top: 60px;
}

.back-to-calendar-btn {
  background: #281ABC;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(40, 26, 188, 0.3);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}

.back-to-calendar-btn:hover {
  background: #1a0e7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(40, 26, 188, 0.4);
}

.back-arrow {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}

.back-text {
  text-align: left;
  line-height: 1.3;
}

/* Form Container */
.request-form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  background: white;
  padding: 40px 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Title & Subtitle */
.form-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.2rem;
  color: #281ABC;
  margin-bottom: 10px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5px;
}

.form-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.5;
  text-align: center;
}

/* Form Styles */
.request-form {
  width: 100%;
  max-width: 700px;
}

/* Two Column Layout */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

/* Three Column Layout for First Row (First Name, Last Name, Contact Number) */
.form-row-3col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
   padding: 10px;
  border: none;
  outline: none;
  background: #f3eefa;
  border-radius: 6px;
  font-size: 16px;
   box-shadow: inset 0 2px 6px rgba(44,44,255,0.15); 
  font-family: 'league spartan', sans-serif;
  border: 2px solid #ccc;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #281ABC;
  background: white;
}

.form-group input::placeholder {
  color: #999;
  font-style: normal;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}

/* Disabled/unavailable time slot options */
.form-group select option:disabled {
  color: #999 !important;
  background-color: #f5f5f5;
  font-style: italic;
}

/* Optional: center text for all form controls */
.request-form * {
  text-align: left; /* You can change to 'center' if you want input text centered too */
}


/* Error Messages */
.error-message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #d32f2f;
  margin-top: 5px;
  min-height: 20px;
  display: block;
}

.form-group input.error,
.form-group select.error {
  border-color: #d32f2f;
  background: #fff5f5;
}

/* =============================================
   FORM SECTION STYLING (Two Distinct Parts)
   ============================================ */
.form-section {
  background: #f9f9ff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  border: 2px solid #e8e8ff;
  transition: all 0.3s ease;
}

.form-section:hover {
  border-color: #d0d0ff;
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.08);
}

.form-section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #281ABC;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #281ABC;
  letter-spacing: 0.5px;
}

/* Input styling with light blue focus borders */
.form-section .form-group input,
.form-section .form-group select {
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-section .form-group input:focus,
.form-section .form-group select:focus {
  outline: none;
  border-color: #6ba3ff;
  box-shadow: 0 0 8px rgba(107, 163, 255, 0.3);
  background: white;
}

/* Readonly fields styling */
.form-section .form-group input[readonly] {
  background: #e8e8ff;
  color: #281ABC;
  font-weight: 600;
  cursor: not-allowed;
  border-color: #ccc;
}

/* Autofilled Fields Visual Indicator */
.form-group input.autofilled,
.form-group select.autofilled {
  background: #f0f7ff; /* Light blue background */
  border-color: #b3d9ff; /* Lighter blue border */
  transition: background 0.3s ease, border-color 0.3s ease;
}

.form-group input.autofilled:focus,
.form-group select.autofilled:focus {
  background: #ffffff; /* Return to white on focus */
  border-color: #0b3b8c; /* Normal focus color */
}

/* Autofilled fields remain fully editable - no readonly styling */
.form-group input.autofilled::placeholder {
  opacity: 0.5; /* Subtle placeholder */
}

/* Form Note */
.form-note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin: 30px 0 25px 0;
  padding: 12px 18px;
  text-align: center;
}

/* Submit Button Container */
.form-button-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.submit-request-btn {
  background: #281ABC;
  color: white;
  border: none;
  padding: 14px 50px;
  border-radius: 6px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(40, 26, 188, 0.3);
  letter-spacing: 1px;
}

.submit-request-btn:hover {
  background: #1a0e7a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 26, 188, 0.4);
}

.submit-request-btn:active {
  transform: translateY(0);
}

/* ===============================
   MODAL CONFIRMATION STYLES
=============================== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  width: 400px;
  max-width: 90%;
  text-align: left;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.4rem;
  color: #281ABC;
  margin-bottom: 10px;
}

.modal-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: #333;
}

.modal-summary {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
}

.modal-summary p {
  margin: 5px 0;
}

.modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.cancel-btn,
.confirm-btn {
  font-family: 'Poppins', sans-serif;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cancel-btn {
  background: #ddd;
  color: #333;
}

.cancel-btn:hover {
  background: #ccc;
}

.confirm-btn {
  background: #281ABC;
  color: #fff;
}

.confirm-btn:hover {
  background: #1b1090;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Date Input Styling */
input[type="date"] {
  position: relative;
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  filter: invert(0);
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Disabled Date Input Styling */
input[type="date"]:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
  border-color: #e0e0e0;
}

input[type="date"]:disabled::-webkit-calendar-picker-indicator {
  cursor: not-allowed;
  opacity: 0.3;
  pointer-events: none;
}

/* Disabled Number Input Styling */
input[type="number"]:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.6;
  border-color: #e0e0e0;
  color: #999;
}

input[type="number"]:disabled::-webkit-inner-spin-button,
input[type="number"]:disabled::-webkit-outer-spin-button {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Number Input Styling */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .request-form-section {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .request-form-sidebar {
    width: 100%;
    padding-top: 0;
  }

  .back-to-calendar-btn {
    width: fit-content;
  }

  .request-form-container {
    padding: 0 10px;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .request-hero-content h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  .submit-request-btn {
    width: 100%;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .request-hero {
    height: 150px;
  }

  .request-hero-content h1 {
    font-size: 1.6rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .back-to-calendar-btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .calendar-grid {
    width: 94%;
  }
}

@media (max-width: 768px) {
  .calendar-hero-content h1 {
    font-size: 2rem;
  }

  .calendar-hero-content p {
    font-size: 0.95rem;
  }

  .calendar-top-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .calendar-back-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calendar-center-section,
  .calendar-right-section {
    width: 100%;
    justify-content: center;
  }

  .calendar-month-display {
    font-size: 1.8rem;
    min-width: 180px;
  }

  .calendar-grid {
    border: 2px solid #000;
    width: 98%;
    margin: 10px auto 20px auto;
  }

  .calendar-date {
    min-height: 80px;
    padding: 10px 8px;
  }

  .calendar-date .date-number {
    font-size: 1.1rem;
  }

  .booking-label {
    font-size: 0.7rem;
  }

  .form-row {
    flex-direction: column;
  }

  .modal-content {
    width: 95%;
    padding: 25px 20px;
  }
  
  .month-nav-btn {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    padding: 10px;
  }
  
  .legend-color {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .back-to-dashboard-btn {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .calendar-month-display {
    font-size: 1.5rem;
    min-width: 150px;
  }

  .calendar-day-header {
    font-size: 0.8rem;
    padding: 12px 2px;
  }

  .calendar-date {
    min-height: 70px;
    padding: 8px 5px;
  }

  .calendar-date .date-number {
    font-size: 1rem;
  }
  
  .month-nav-btn {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
    padding: 10px;
  }
  
  .legend-inline {
    gap: 6px;
    font-size: 0.85rem;
  }
  
  .legend-color {
    width: 20px;
    height: 20px;
  }
  .calendar-date.available:hover {
  background: #f8f8ff;
  box-shadow: inset 0 0 0 3px #281ABC;
  z-index: 10;
  width: 55px;
}
.calendar-date.available {
  width: 55px;
}
.calendar-date.has-bookings {
  width: 55px;
}
}

/* ===== Custom Alert Overlay ===== */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

/* ===== Alert Box (Default) ===== */
#customAlert,
#formAlertBox {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 25px 30px;
  max-width: 400px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10000;
  font-family: "Poppins", Arial, sans-serif;
}

/* ===== Message Text ===== */
#customAlert .alert-message,
#formAlertBox .alert-message {
  font-size: 16px;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* ===== OK Button ===== */
#customAlert .alert-ok-btn,
#formAlertBox .alert-ok-btn {
  background: #1a0e7a; /* blue */
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.25s ease;
}

#customAlert .alert-ok-btn:hover,
#formAlertBox .alert-ok-btn:hover {
  background-color: #426043; /* Darker green on hover */
}

/* ===== Success State ===== */
#customAlert.success,
#formAlertBox.success {
  background-color: #ffffff; 
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* ===== Custom Confirm Dialog ===== */
#customConfirm {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  padding: 25px 30px;
  max-width: 400px;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 10000;
  font-family: "Poppins", Arial, sans-serif;
}

#customConfirm .confirm-message {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

#customConfirm .confirm-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

#customConfirm .confirm-cancel-btn,
#customConfirm .confirm-ok-btn {
  padding: 10px 25px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-family: "Poppins", Arial, sans-serif;
  transition: background-color 0.25s ease;
  font-weight: 500;
}

#customConfirm .confirm-cancel-btn {
  background-color: #e0e0e0;
  color: #333;
}

#customConfirm .confirm-cancel-btn:hover {
  background-color: #c8c8c8;
}

#customConfirm .confirm-ok-btn {
  background: #1a0e7a;
  color: #ffffff;
}

#customConfirm .confirm-ok-btn:hover {
  background-color: #150b5f;
}

/* ===== Responsive Centering ===== */
@media (max-width: 500px) {
  #customAlert,
  #formAlertBox {
    width: 85%;
    padding: 20px;
  }
  
  #customConfirm {
    width: 85%;
    padding: 20px;
  }
  
  #customConfirm .confirm-buttons {
    flex-direction: column;
  }
  
  #customConfirm .confirm-cancel-btn,
  #customConfirm .confirm-ok-btn {
    width: 100%;
  }
}
/* Custom Dropdown for Make New Request */
.custom-dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-dropdown .make-request-btn {
  background: linear-gradient(90deg,#281ABC 0%, #2e2bd6 100%);
  color: #fff;
  border: none;
  border-radius: 12px;  /* rounded */
  padding: 14px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  margin-bottom: 8px; /* small gap */
  box-shadow: 0 8px 20px rgba(40,26,188,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.custom-dropdown .make-request-btn .mr-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.custom-dropdown .make-request-btn .mr-caret {
  font-size: 0.95rem;
  opacity: 0.95;
}
.custom-dropdown .make-request-btn:focus,
.custom-dropdown .make-request-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(40,26,188,0.16);
}

.custom-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 12px; /* rounded */
  width: 100%;
  box-shadow: 0 14px 40px rgba(7,18,57,0.12);
  z-index: 40;
  margin: 0;
  padding: 8px 8px;
  border: 1px solid rgba(11,59,140,0.06);
}
.custom-dropdown .dropdown-menu li { list-style: none; }
.custom-dropdown .dropdown-menu a {
  color: #222;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 8px;
  transition: background 0.12s, color 0.12s;
}
.custom-dropdown .dropdown-menu a + a { margin-top: 6px; }
.custom-dropdown .dropdown-menu a:hover {
  background: #f4f6ff;
  color: #0b3b8c;
}
.custom-dropdown:hover .dropdown-menu,
.custom-dropdown:focus-within .dropdown-menu,
.custom-dropdown .make-request-btn:focus + .dropdown-menu {
  display: block;
}

/* Make logout button match edit-profile-btn */
.logout-btn, .logout-btn.edit-profile-btn {
  background: #ffffff;
  color: #281ABC;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: leauge spartan, sans-serif;
  font-size: 1rem;
  border: 2px solid #281abc;
  box-shadow: 0 2px 4px rgba(40, 26, 188, 0.15);
}
.logout-btn:hover, .logout-btn.edit-profile-btn:hover {
  background: #1f148d;
  color: white;
  box-shadow: 0 4px 8px rgba(31, 20, 141, 0.25);
}

/* Responsive layout for filter and Make New Request button */
@media (max-width: 768px) {
  .request-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .request-filters-inline {
    justify-content: space-between;
    width: 100%;
  }

  .filter-select {
    flex: 1;
    min-width: auto;
  }

  .custom-dropdown {
    width: 100%;
  }
}

/* ================================================
   ADMIN DASHBOARD STYLES
   Add this to your style.css file
================================================ */

/* Admin Body Layout */
.admin-body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  background: #f5f5f5;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Sidebar Styles */
.admin-sidebar {
  width: 280px;
  background: linear-gradient(180deg, #281ABC 0%, #1a0e7a 100%);
  color: white;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 1000;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Collapsed sidebar state */
.admin-sidebar.collapsed {
  width: 70px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.15s; /* Delay collapse to prevent flicker */
}

/* Hover-to-expand: Expand immediately when hovering over collapsed sidebar */
.admin-sidebar.collapsed:hover {
  width: 280px;
  transition-delay: 0s; /* Expand immediately on hover */
}

/* Sidebar Toggle Button - Positioned at bottom-right for visibility */
.sidebar-toggle-btn {
  position: fixed;
  bottom: 90px; /* Above logout button */
  left: 265px; /* Right edge of expanded sidebar (280px - 15px for centering) */
  width: 30px;
  height: 30px;
  background: #FFCB05;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, transform 0.2s ease;
  z-index: 1002; /* Above sidebar */
  color: #281ABC;
  font-weight: bold;
  font-size: 14px;
}

/* Move button when sidebar is collapsed - center on right edge of collapsed sidebar */
body.sidebar-collapsed .sidebar-toggle-btn,
.admin-sidebar.collapsed ~ * .sidebar-toggle-btn {
  left: 55px; /* Center on right edge of collapsed sidebar (70px - 15px for centering) */
}

/* UX IMPROVEMENT: When collapsed sidebar is hovered (expanded view), move button to expanded position */
.admin-sidebar.collapsed:hover .sidebar-toggle-btn {
  left: 265px; /* Move to expanded position */
}

.sidebar-toggle-btn:hover {
  background: #ffd633;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sidebar-toggle-btn:active {
  transform: scale(0.95);
}

.sidebar-header {
  padding: 30px 20px 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.sidebar-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.admin-sidebar.collapsed .sidebar-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}

/* Restore logo size on hover when collapsed */
.admin-sidebar.collapsed:hover .sidebar-logo {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

.sidebar-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 3px 0;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.3s ease;
  max-height: 50px;
}

.admin-sidebar.collapsed .sidebar-header h3 {
  opacity: 0;
  max-height: 0;
  margin: 0;
}

/* Show header text on hover when collapsed */
.admin-sidebar.collapsed:hover .sidebar-header h3 {
  opacity: 1;
  max-height: 50px;
  margin: 0 0 3px 0;
}

.sidebar-header p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.3s ease;
  max-height: 30px;
}

.admin-sidebar.collapsed .sidebar-header p {
  opacity: 0;
  max-height: 0;
}

/* Show header subtitle on hover when collapsed */
.admin-sidebar.collapsed:hover .sidebar-header p {
  opacity: 0.9;
  max-height: 30px;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
  padding: 20px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  gap: 12px;
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}

/* Collapsed sidebar - center icons and hide text */
.admin-sidebar.collapsed .sidebar-link {
  padding: 15px 0;
  justify-content: center;
  gap: 0;
}

/* Keep link layout expanded on hover */
.admin-sidebar.collapsed:hover .sidebar-link {
  padding: 15px 25px;
  justify-content: flex-start;
  gap: 12px;
}

.admin-sidebar.collapsed .sidebar-link span:not(.dropdown-arrow):not(.admin-notif-badge) {
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.2s ease, width 0.3s ease;
}

/* Show link text on hover when collapsed */
.admin-sidebar.collapsed:hover .sidebar-link span:not(.dropdown-arrow):not(.admin-notif-badge) {
  opacity: 1;
  width: auto;
}

.admin-sidebar.collapsed .dropdown-arrow {
  display: none;
}

/* Show dropdown arrows on hover when collapsed */
.admin-sidebar.collapsed:hover .dropdown-arrow {
  display: inline-block;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: #FFCB05;
}

.sidebar-link.active {
  background: white;
  color: black;
  border-left-color: #FFCB05;
  font-weight: 600;
}

.sidebar-icon {
  font-size: 1.3rem;
  width: 30px;
  text-align: center;
}

/* Icon images sizing */
.nav-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* Default (white icons) */
.sidebar-link .nav-icon {
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease;
}

/* Active (black icon) */
.sidebar-link.active .nav-icon {
  filter: brightness(0) invert(0);
}

/* Hover effect */
.sidebar-link:hover .nav-icon {
  filter: brightness(0) invert(0.7);
}

/* Sidebar Dropdown */
.sidebar-dropdown {
  position: relative;
}

.dropdown-toggle {
  justify-content: space-between;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease, opacity 0.2s ease;
  margin-left: auto;
}

.dropdown-toggle.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.dropdown-content.open {
  max-height: 200px;
}

/* Hide dropdown content when sidebar is collapsed */
.admin-sidebar.collapsed .dropdown-content {
  max-height: 0 !important;
}

/* Show dropdown content on hover when collapsed and dropdown is open */
.admin-sidebar.collapsed:hover .dropdown-content.open {
  max-height: 200px !important;
}

.dropdown-link {
  display: block;
  padding: 12px 25px 12px 67px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
  white-space: nowrap;
  overflow: hidden;
}

.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-left-color: #FFCB05;
}

.dropdown-link.active {
  background: white;
  color: black;
  border-left-color: #FFCB05;
  font-weight: 600;
}

/* Sidebar Footer */
.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 0.3s ease;
}

.admin-sidebar.collapsed .sidebar-footer {
  padding: 15px 10px;
}

.logout-btn {
  width: 100%;
  background: white;
  color: #281ABC;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
}

.admin-sidebar.collapsed .logout-btn {
  padding: 10px;
  font-size: 0;
  gap: 0;
  background-image: url('Assets/logout.png');
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 44px;
}

/* Show only icon when collapsed - hide ::before */
.admin-sidebar.collapsed .logout-btn::before {
  content: '';
  display: none;
}

/* Show logout text on hover when collapsed */
.admin-sidebar.collapsed:hover .logout-btn {
  padding: 12px 20px;
  font-size: 0.95rem;
  gap: 10px;
  background-image: none; /* Remove background icon on hover */
}

/* Hide icon on hover when collapsed */
.admin-sidebar.collapsed:hover .logout-btn::before {
  display: none;
}

/* Collapsed state for sidebar-logout-btn class variant */
.admin-sidebar.collapsed .sidebar-logout-btn {
  padding: 10px;
  font-size: 0;
  gap: 0;
  background-image: url('Assets/logout.png');
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 44px;
}

.admin-sidebar.collapsed .sidebar-logout-btn .logout-icon,
.admin-sidebar.collapsed .sidebar-logout-btn .logout-text {
  display: none;
}

.admin-sidebar.collapsed:hover .sidebar-logout-btn {
  padding: 12px 20px;
  font-size: 0.95rem;
  gap: 10px;
  background-image: none;
}

.admin-sidebar.collapsed:hover .sidebar-logout-btn .logout-icon,
.admin-sidebar.collapsed:hover .sidebar-logout-btn .logout-text {
  display: inline;
}

.logout-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  background: #281ABC;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Main Content */
.admin-main {
  flex: 1;
  margin-left: 280px;
  background: #f5f5f5;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto; /* Allow vertical scrolling when content overflows */
  max-width: calc(100vw - 280px);
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Adjust main content when sidebar is collapsed */
.admin-main.sidebar-collapsed {
  margin-left: 70px;
  max-width: calc(100vw - 70px);
}

/* Dashboard Page Specific - Removed non-scrollable restriction */
/* .admin-main.admin-dashboard-page {
  height: 100vh;
  overflow: hidden;
} */

/* Admin Hero Section */
.admin-hero {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-left: 60px;
}

.admin-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('Assets/Hall.jpg') center / cover;
  opacity: 1;
  z-index: 1;
}

.admin-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: white;
  padding: 20px 40px;
}

.admin-hero-content h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: 3.5rem;
  font-weight: 750;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
}

.admin-hero-content .highlight-yellow {
  color: #FFCB05;
}

.admin-hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  margin: 0;
  font-weight: 400;
  color: white;
}

/* Dashboard Content */
.admin-dashboard-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  min-height: calc(100vh - 180px); /* Changed from height to min-height to allow scrolling */
  overflow-x: hidden;
  overflow-y: visible; /* Changed from auto - let the parent (admin-main) handle scrolling */
  box-sizing: border-box;
}

.dashboard-left,
.dashboard-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: visible; /* Changed from hidden to allow content to flow naturally */
  min-height: 0;
}

/* Quick Access Section */
.quick-access-section {
  background: #f1e9f3;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #281ABC;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #000;
  margin: 0 0 25px 0;
}

/* Quick Access Cards */
.quick-access-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.quick-access-card:hover {
  border-color: #281ABC;
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.15);
  transform: translateY(-2px);
}

.quick-access-card:last-child {
  margin-bottom: 0;
}

.card-icon {
  margin-bottom: 15px;
}

.access-icon {
  width: 70px;
  height: 70px;
}

.card-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #281ABC;
  margin: 0 0 18px 0;
  letter-spacing: 0.5px;
}

.review-btn {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 10px 35px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

/* ==================== PENDING REQUESTS SECTION ==================== */
.pending-requests-section {
  background: #e8dff0;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.pending-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.pending-request-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pending-request-card:hover {
  border-color: #281ABC;
  box-shadow: 0 6px 16px rgba(40, 26, 188, 0.12);
  transform: translateY(-3px);
}

.pending-card-icon {
  margin-bottom: 12px;
}

.pending-icon {
  width: 50px;
  height: 50px;
}

.pending-badge {
  background: #ff6b6b;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.pending-card-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: #281ABC;
  margin: 0 0 16px 0;
  letter-spacing: 0.3px;
  line-height: 1.2;
  min-height: 20px;
}

.review-now-btn {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  width: auto;
}

.review-now-btn:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.35);
}

/* ==================== INVENTORY STOCKS SECTION ==================== */
.inventory-stocks-section {
  background: #e8dff0;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.inventory-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.inventory-card {
  background: white;
  border: 3px solid #5271ff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.inventory-card:hover {
  border-color: #3d5eff;
  box-shadow: 0 6px 16px rgba(82, 113, 255, 0.15);
  transform: translateY(-3px);
}

.inventory-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inventory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #281ABC;
  border-radius: 10px;
  flex-shrink: 0;
}

.inventory-item-icon {
  width: 26px;
  height: 26px;
}

.inventory-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #666;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.inventory-count {
  font-family: 'League Spartan', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}

/* Add Internal Booking Button */
.add-internal-booking-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px 24px;
  background: #281ABC;
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.2);
}

.add-internal-booking-btn:hover {
  background: #1a0e7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(40, 26, 188, 0.3);
}

.add-internal-booking-btn:active {
  transform: translateY(0);
}

/* Week Calendar Card */
.week-calendar-card {
  background: #f1e9f3;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.calendar-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #281ABC;
  margin: 0 0 8px 0;
  text-align: left;
  letter-spacing: 1px;
}

.calendar-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #000;
  margin: 0 0 20px 0;
  text-align: left;
  font-weight: 400;
}

.week-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.week-day-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 10px;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.week-day-card:hover {
  border-color: #281ABC;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(40, 26, 188, 0.15);
}

.week-day-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #666;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.week-day-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.week-day-card.today {
  background: #281ABC;
  border-color: #281ABC;
}

.week-day-card.today .week-day-name,
.week-day-card.today .week-day-number {
  color: white;
}

.week-day-card.selected {
  background: #FFCB05;
  border-color: #FFCB05;
}

.week-day-card.selected .week-day-name,
.week-day-card.selected .week-day-number {
  color: #000;
}

.week-day-card.today.selected {
  background: #281ABC;
  border-color: #281ABC;
  box-shadow: 0 10px 20px rgba(40,26,188,0.18), 0 0 0 6px rgba(40,26,188,0.06);
  transform: translateY(-3px);
  position: relative;
  z-index: 2;
}

.week-day-card.today.selected::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 8px;
  height: 5px;
  background: rgba(255,203,5,0.08);
  border-radius: 4px;
  pointer-events: none;
}

.week-day-card.today.selected .week-day-name,
.week-day-card.today.selected .week-day-number {
  color: white;
}

/* Red dot indicator - commented out as it's confusing */
/*
.week-day-card.has-reservation::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: #ff5722;
  border-radius: 50%;
  margin: 8px auto 0;
}

.week-day-card.today.has-reservation::after,
.week-day-card.selected.has-reservation::after {
  background: white;
}
*/

.week-day-card.booked {
  background: #f5f5f5;
  border-color: #ccc;
}

.week-day-card.booked .week-day-name,
.week-day-card.booked .week-day-number {
  color: #999;
}

/* Reservations Card */
.reservations-card {
  background: #f1e9f3;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.reservations-title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #281ABC;
  margin: 0 0 8px 0;
  letter-spacing: 1px;
}

.reservations-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #000;
  margin: 0 0 20px 0;
}

.reservations-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
}

.reservations-list::-webkit-scrollbar {
  width: 8px;
}

.reservations-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.reservations-list::-webkit-scrollbar-thumb {
  background: #281ABC;
  border-radius: 4px;
}

.reservations-list::-webkit-scrollbar-thumb:hover {
  background: #1a0e7a;
}

/* Reservation Item */
.reservation-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  transition: all 0.2s ease;
}

.reservation-item:hover {
  border-color: #281ABC;
  box-shadow: 0 2px 8px rgba(40, 26, 188, 0.1);
}

.reservation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.reservation-date {
  font-family: 'League Spartan', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.approved {
  background: #4caf50;
  color: white;
}

.status-badge.pending {
  background: #ffc107;
  color: #000;
}

.status-badge.in-progress {
  background: #dbeafe;
  color: #1e40af;
}

.reservation-details {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ==================== INTERNAL BOOKING MODAL ==================== */
.internal-booking-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.internal-booking-modal-overlay.active {
  display: flex;
}

.internal-booking-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.internal-booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  border-radius: 16px 16px 0 0;
}

.internal-booking-modal-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
}

.internal-booking-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.internal-booking-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.internal-booking-form {
  padding: 30px;
}

.internal-booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.internal-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.internal-form-group.full-width {
  grid-column: 1 / -1;
}

.internal-form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.internal-form-group .required {
  color: #dc2626;
}

.internal-form-group input,
.internal-form-group select,
.internal-form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.internal-form-group input:focus,
.internal-form-group select:focus,
.internal-form-group textarea:focus {
  outline: none;
  border-color: #281ABC;
  box-shadow: 0 0 0 3px rgba(40, 26, 188, 0.1);
}

.internal-form-group input.error,
.internal-form-group select.error,
.internal-form-group textarea.error {
  border-color: #dc2626;
}

/* Time group styling for internal booking modal */
.internal-form-group.time-group {
  grid-column: 1 / -1; /* Full width */
}

.internal-form-group.time-group .time-inputs select {
  flex: 1;
  min-width: 0;
}

.internal-form-group.time-group .time-separator {
  color: #281ABC;
  font-size: 1.2rem;
}

.internal-form-group.time-group .time-errors {
  display: flex;
  gap: 15px;
  margin-top: 4px;
}

.internal-form-group.time-group .time-errors .internal-error-message {
  flex: 1;
}

.internal-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-hint {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #666;
  font-style: italic;
  margin-top: -4px;
}

.internal-error-message {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #dc2626;
  min-height: 18px;
  display: block;
}

.internal-booking-form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.internal-booking-cancel-btn,
.internal-booking-submit-btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.internal-booking-cancel-btn {
  background: #f5f5f5;
  color: #666;
}

.internal-booking-cancel-btn:hover {
  background: #e0e0e0;
}

.internal-booking-submit-btn {
  background: #281ABC;
  color: white;
  position: relative;
  min-width: 150px;
}

.internal-booking-submit-btn:hover {
  background: #1a0e7a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 26, 188, 0.3);
}

.internal-booking-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.internal-booking-submit-btn .btn-spinner {
  display: none;
}

.internal-booking-submit-btn.loading .btn-text {
  display: none;
}

.internal-booking-submit-btn.loading .btn-spinner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
  .internal-booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .internal-booking-modal {
    max-width: 95%;
  }
}

/* ==================== INTERNAL BOOKING CONFIRMATION MODAL ==================== */
.internal-booking-confirm-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.internal-booking-confirm-modal-overlay.active {
  display: flex;
}

.internal-booking-confirm-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

.internal-booking-confirm-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 2px solid #f0f0f0;
  background: linear-gradient(135deg, #281ABC 0%, #1a0e7a 100%);
  border-radius: 16px 16px 0 0;
}

.internal-booking-confirm-modal-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
}

.internal-booking-confirm-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
}

.internal-booking-confirm-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.internal-booking-confirm-modal-body {
  padding: 30px;
}

.internal-booking-confirm-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #e9ecef;
}

.internal-booking-confirm-summary h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #281ABC;
  margin: 0 0 20px 0;
  text-align: center;
}

.internal-booking-confirm-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.internal-booking-confirm-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.internal-booking-confirm-detail-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.internal-booking-confirm-detail-value {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  min-height: 20px;
  display: flex;
  align-items: center;
}

.internal-booking-confirm-detail-value.empty {
  color: #999;
  font-style: italic;
}

.internal-booking-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
}

.internal-booking-confirm-yes-btn,
.internal-booking-confirm-no-btn {
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  min-width: 140px;
}

.internal-booking-confirm-yes-btn {
  background: #10b981;
  color: white;
}

.internal-booking-confirm-yes-btn:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.internal-booking-confirm-no-btn {
  background: #f5f5f5;
  color: #666;
}

.internal-booking-confirm-no-btn:hover {
  background: #e0e0e0;
}

/* Responsive for confirmation modal */
@media (max-width: 768px) {
  .internal-booking-confirm-modal {
    max-width: 95%;
    margin: 20px;
  }
  
  .internal-booking-confirm-details {
    grid-template-columns: 1fr;
  }
  
  .internal-booking-confirm-actions {
    flex-direction: column;
  }
  
  .internal-booking-confirm-yes-btn,
  .internal-booking-confirm-no-btn {
    width: 100%;
  }
}

/* ==================== PLACEHOLDER CONTENT STYLES ==================== */
.admin-content {
  padding: 40px;
}

.placeholder-content {
  background: white;
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 60px auto;
}

.placeholder-icon {
  font-size: 5rem;
  margin-bottom: 30px;
  opacity: 0.6;
}

.placeholder-content h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #281ABC;
  margin-bottom: 20px;
}

.placeholder-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.placeholder-note {
  font-weight: 600;
  color: #FFCB05;
  background: #fff9e6;
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 20px;
}

/* ==================== TENTS & CHAIRS ADMIN PAGE STYLES ==================== */

/* Page Wrapper */
.tents-page-wrapper {
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.tents-page-wrapper .admin-hero {
  margin-bottom: 0;
}

.tents-page-wrapper > .tents-stats-container {
  padding: 40px 40px 0 40px;
}

.tents-page-wrapper > .tents-content-card {
  margin: 24px 40px 40px 40px;
}

/* Stats Cards */
.tents-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.tents-stat-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-top: 4px solid;
}

.tents-stat-card.blue {
  border-top-color: #4f46e5;
}

.tents-stat-card.orange {
  border-top-color: #f97316;
}

.stat-number {
  font-family: 'League Spartan', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.tents-stat-card.blue .stat-number {
  color: #4f46e5;
}

.tents-stat-card.orange .stat-number {
  color: #f97316;
}

.stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
/* Content Card */
.tents-content-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
} box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Tabs */
.tents-tabs-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.tents-tabs {
  display: flex;
  gap: 24px;
}

.tents-tab {
  padding-bottom: 8px;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.tents-tab.active {
  color: #4f46e5;
  border-bottom-color: #4f46e5;
}

.tents-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tents-view-buttons {
  display: flex;
  gap: 8px;
}

.tents-view-btn {
  padding: 8px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  background: #e5e7eb;
  color: #374151;
  transition: all 0.2s;
}

.tents-view-btn.active {
  background: #4f46e5;
  color: white;
}

.tents-view-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Filters */
.tents-filters-section {
  padding: 20px 24px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.5fr 0.9fr 1.2fr;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.tents-booking-buttons {
  padding: 20px 24px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.tents-booking-buttons .add-internal-booking-btn {
  width: auto;
  margin-top: 0;
}

.btn-booking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-booking:hover {
  background: #4338ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-booking svg {
  width: 20px;
  height: 20px;
}

.tents-filter-group {
  min-width: 150px;
}

.tents-filter-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

.tents-filter-group input,
.tents-filter-group select {
  width: 100%;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: white;
}

.tents-filter-group input:focus,
.tents-filter-group select:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Date Range Filter Styles */
.tents-date-range-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tents-date-input-wrapper {
  flex: 1;
}

.tents-date-separator {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  padding: 0 4px;
}

.tents-date-input-wrapper input[type="date"] {
  width: 100%;
  padding: 8px 12px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: white;
  height: 36px;
}

.tents-date-input-wrapper input[type="date"]:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.tents-search-wrapper {
  position: relative;
}

.tents-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

.tents-search-wrapper input {
  padding-left: 36px;
}

/* Table */
.tents-table-container {
  padding: 24px;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
}

.tents-requests-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  min-width: 1400px;
}

.tents-requests-table thead {
  background: #FFCB05;
}

.tents-requests-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: 'League Spartan', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000;
  white-space: nowrap;
}

/* Column-specific widths for headers */
.tents-requests-table th:nth-child(1) { width: 40px; min-width: 40px; max-width: 40px; text-align: center; padding: 8px 4px; } /* Checkbox */
.tents-requests-table th:nth-child(2) { min-width: 100px; max-width: 120px; } /* Status */
.tents-requests-table th:nth-child(3) { min-width: 140px; max-width: 180px; } /* Actions */
.tents-requests-table th:nth-child(4) { min-width: 110px; max-width: 130px; } /* Submitted On */
.tents-requests-table th:nth-child(5) { min-width: 100px; max-width: 120px; } /* Full Name */
.tents-requests-table th:nth-child(6) { min-width: 100px; max-width: 120px; } /* Contact Number */
.tents-requests-table th:nth-child(7) { min-width: 100px; max-width: 150px; } /* Purpose */
.tents-requests-table th:nth-child(8),
.tents-requests-table th:nth-child(9) { min-width: 95px; max-width: 115px; } /* Start/End Date */
.tents-requests-table th:nth-child(10),
.tents-requests-table th:nth-child(11) { min-width: 60px; max-width: 70px; text-align: center; } /* Chairs/Tents */
.tents-requests-table th:nth-child(12) { min-width: 90px; max-width: 110px; } /* Delivery Mode */
.tents-requests-table th:nth-child(13) { min-width: 130px; max-width: 180px; } /* Address */
.tents-requests-table th:nth-child(14) { min-width: 120px; max-width: 160px; } /* Remarks or other */
.tents-requests-table th:nth-child(15) { min-width: 100px; max-width: 140px; } /* Completed/Archived on */

.tents-requests-table td {
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  border-top: 1px solid #e5e7eb;
  vertical-align: middle;
}

.tents-requests-table tbody tr:nth-child(even) {
  background: #f9fafb;
}

.tents-requests-table tbody tr:nth-child(odd) {
  background: white;
}

.tents-requests-table tbody tr:hover {
  background: #f3f4f6;
}

/* Table Column Specific Styling */
.tents-requests-table td:nth-child(1) { /* Checkbox */
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  text-align: center;
  padding: 8px 4px;
}

.tents-requests-table td:nth-child(2) { /* Status */
  min-width: 100px;
  max-width: 120px;
}

.tents-requests-table td:nth-child(3) { /* Actions */
  min-width: 140px;
  max-width: 180px;
}

.tents-requests-table td:nth-child(4) { /* Submitted On */
  min-width: 110px;
  max-width: 130px;
}

.tents-requests-table td:nth-child(5) { /* Full Name */
  min-width: 100px;
  max-width: 120px;
}

.tents-requests-table td:nth-child(6) { /* Contact Number */
  min-width: 100px;
  max-width: 120px;
}

.tents-requests-table td:nth-child(7) { /* Purpose */
  min-width: 80px;
  max-width: 200px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.tents-requests-table td:nth-child(8),
.tents-requests-table td:nth-child(9) { /* Start Date, End Date */
  min-width: 95px;
  max-width: 115px;
}

.tents-requests-table td:nth-child(10),
.tents-requests-table td:nth-child(11) { /* Chairs, Tents */
  text-align: center;
  min-width: 60px;
  max-width: 70px;
}

.tents-requests-table td:nth-child(12) { /* Delivery Mode */
  min-width: 90px;
  max-width: 110px;
}

.tents-requests-table td:nth-child(13) { /* Address */
  min-width: 100px;
  max-width: 250px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.tents-requests-table td:nth-child(14),
.tents-requests-table td:nth-child(15) { /* Remarks or Completed/Archived on */
  min-width: 80px;
  max-width: 300px;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Remarks column (history & archives). Allow long text to wrap and break safely. */
.tents-requests-table th:nth-child(14),
.tents-requests-table td:nth-child(14) {
  /* When Remarks exists it will occupy the 14th column in history/archives */
  min-width: 160px;
  max-width: 300px;
}

.tents-requests-table td:nth-child(14) {
  white-space: normal; /* allow wrapping */
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Completed/Archived timestamp column sits after Remarks in history/archives (15th column) */
.tents-requests-table th:nth-child(15),
.tents-requests-table td:nth-child(15) {
  min-width: 120px;
  max-width: 160px;
  white-space: nowrap;
  text-align: right;
}

/* Inline remarks expand/collapse styles */
.remarks-text {
  cursor: pointer;
  color: #111827;
  display: inline-block;
}
.remarks-text.collapsed {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.remarks-text.expanded {
  white-space: normal;
  overflow: visible;
}

/* Status Badges */
.tents-status-badge-pending {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #fed7aa;
  color: #92400e;
  text-transform: capitalize;
}

.tents-status-badge-approved {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #d1fae5;
  color: #065f46;
  text-transform: capitalize;
}

.tents-status-badge-in-progress {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #dbeafe;
  color: #1e40af;
  text-transform: capitalize;
}

.tents-status-badge-completed {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #d1fae5;
  color: #065f46;
  text-transform: capitalize;
}

.tents-status-badge-rejected {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #fee2e2;
  color: #991b1b;
  text-transform: capitalize;
}

.tents-status-badge-cancelled {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  background: #f3f4f6;
  color: #4b5563;
  text-transform: capitalize;
}

/* Action Buttons Container */
.tents-action-buttons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

/* Action Buttons */
.tents-btn-approve,
.tents-btn-deny,
.tents-btn-complete,
.tents-btn-cancel,
.tents-btn-archive,
.tents-btn-delete,
.tents-btn-unarchive {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  width: 100%;
  margin-bottom: 4px;
  white-space: nowrap;
}

.tents-btn-approve {
  background: #10b981;
  color: white;
}

.tents-btn-approve:hover {
  background: #059669;
}

.tents-btn-deny {
  background: #ef4444;
  color: white;
}

.tents-btn-deny:hover {
  background: #dc2626;
}

.tents-btn-complete {
  background: #4f46e5;
  color: white;
}

.tents-btn-complete:hover {
  background: #4338ca;
}

/* Cancel button for internal bookings - distinct red/orange color */
.tents-btn-cancel {
  background: #f97316; /* Orange-500 */
  color: white;
}

.tents-btn-cancel:hover {
  background: #ea580c; /* Orange-600 */
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.tents-btn-cancel:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(249, 115, 22, 0.2);
}

/* Cancel Booking button for admin to cancel user requests - darker red to differentiate from Deny */
.tents-btn-cancel-user {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
  width: 100%;
  margin-bottom: 4px;
  white-space: nowrap;
  background: #c2410c; /* Orange-700 - darker than internal cancel */
  color: white;
}

.tents-btn-cancel-user:hover {
  background: #9a3412; /* Orange-800 */
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(194, 65, 12, 0.3);
}

.tents-btn-cancel-user:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(194, 65, 12, 0.2);
}

.tents-btn-archive {
  background: #6b7280;
  color: white;
}

.tents-btn-archive:hover {
  background: #4b5563;
}

.tents-btn-delete {
  background: #dc2626;
  color: white;
}

.tents-btn-delete:hover {
  background: #b91c1c;
}

/* Unarchive button: restore archived requests back to history
   Uses a subtle primary accent to indicate a non-destructive restore action */
.tents-btn-unarchive {
  background: #2563eb; /* blue-600 */
  color: white;
}

.tents-btn-unarchive:hover {
  background: #1d4ed8; /* blue-700 */
}

/* Export Dropdown */
.tents-export-dropdown {
  position: relative;
  display: inline-block;
}

.btn-export {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-export:hover {
  background: #059669;
}

.btn-export svg {
  width: 20px;
  height: 20px;
}

.tents-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  z-index: 100;
}

.tents-dropdown-menu.active {
  display: block;
}

.tents-dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 16px;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  transition: background 0.2s;
  white-space: nowrap;
}

.tents-dropdown-item:hover {
  background: #f3f4f6;
}

/* Calendar */
.tents-calendar-container {
  padding: 24px;
}

.tents-calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  gap: 32px;
}

.tents-calendar-header h2 {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  min-width: 200px;
  text-align: center;
}

/* Calendar Legend */
.tents-calendar-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 8px;
  flex-wrap: wrap;
}

.tents-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #374151;
}

/* Instruction legend item styling */
.tents-legend-item.tents-legend-instruction {
  background: #eff6ff;
  border: 1px solid #3b82f6;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: #1e40af;
  margin-left: 8px;
}

.tents-legend-instruction .legend-icon {
  font-size: 14px;
  margin-right: 4px;
}

.tents-legend-instruction strong {
  color: #1e3a8a;
}

.tents-legend-box {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  flex-shrink: 0;
}

.tents-legend-today {
  background: #dbeafe;
  border: 2px solid #3b82f6;
}

.tents-legend-has-bookings {
  background: #fef08a;
  border: 2px solid #eab308;
}

.tents-legend-empty {
  background: white;
  border: 1px solid #e5e7eb;
}

.tents-legend-event {
  width: 60px;
  height: 24px;
  background: #5b21b6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.tents-legend-event::after {
  content: 'Event';
}

.tents-calendar-nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tents-calendar-nav-btn {
  padding: 8px;
  border: 1px solid #d1d5db;
  background: white;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tents-calendar-nav-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.tents-calendar-nav-btn svg {
  width: 20px;
  height: 20px;
  color: #374151;
}

.tents-calendar-grid {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: white;
}

.tents-calendar-day-header {
  background: #5b21b6;
  color: white;
  padding: 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #4c1d95;
}

.tents-calendar-day-header:last-child {
  border-right: none;
}

.tents-calendar-date {
  min-height: 100px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
  position: relative;
}

.tents-calendar-date.empty {
  background: #f9fafb;
  cursor: default;
}

.tents-calendar-date:not(.empty) {
  cursor: pointer;
}

.tents-calendar-date:not(.empty):hover {
  background: #f9fafb;
  box-shadow: inset 0 0 0 1px #9ca3af;
}

.tents-calendar-date.has-bookings {
  background: #fef08a;
  border: 2px solid #eab308;
}

.tents-calendar-date.has-bookings:hover {
  background: #fde047;
  border-color: #ca8a04;
}

.tents-calendar-date.today {
  background: #dbeafe;
  border: 2px solid #3b82f6;
}

.tents-calendar-date.today.has-bookings {
  background: #fef08a;
  border: 2px solid #3b82f6;
  box-shadow: 0 0 0 2px #eab308;
}

.tents-date-number {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.tents-booking-indicator {
  margin-top: auto;
  padding: 4px 8px;
  background: #5b21b6;
  color: white;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.tents-calendar-event {
  padding: 4px 6px;
  border-radius: 4px;
  margin-bottom: 3px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  background: #5b21b6;
  color: white;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tents-calendar-event:hover {
  background: #6d28d9;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.tents-calendar-event:focus {
  outline: 2px solid #a78bfa;
  outline-offset: 2px;
  background: #6d28d9;
}

.tents-calendar-event:active {
  transform: translateY(0);
  box-shadow: none;
}

.tents-event-name {
  font-weight: 600;
  margin-bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tents-event-items {
  font-size: 10px;
  opacity: 0.95;
  font-weight: 500;
}

.tents-more-bookings {
  font-size: 10px;
  color: #6b7280;
  font-weight: 600;
  margin-top: 2px;
  padding: 2px 4px;
  text-align: center;
  background: #f3f4f6;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tents-more-bookings:hover {
  background: #e5e7eb;
  color: #374151;
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tents-more-bookings:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  background: #e5e7eb;
}

.tents-more-bookings:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Modal */
.tents-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.tents-modal-overlay.active {
  display: flex;
}

.tents-modal {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tents-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tents-modal-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.tents-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.tents-modal-close:hover {
  background: #f3f4f6;
}

.tents-modal-body {
  padding: 24px;
}

.tents-modal-bookings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tents-booking-item {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.2s;
}

.tents-booking-item.with-divider {
  margin-top: 4px;
}

.tents-booking-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.tents-booking-item:last-child {
  margin-bottom: 0;
}

.tents-booking-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.tents-booking-name {
  display: flex;
  align-items: center;
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #111827;
}

.tents-booking-item-details {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tents-booking-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.tents-booking-detail-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.tents-booking-detail-row span {
  line-height: 1.5;
}

.tents-no-bookings {
  text-align: center;
  padding: 48px 20px;
  color: #6b7280;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
}

/* Notification Buttons */
.tents-btn-times-up,
.tents-btn-collect {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  margin-right: 4px;
  margin-bottom: 4px;
}

.tents-btn-times-up {
  background: #fbbf24;
  color: #78350f;
}

.tents-btn-times-up:hover {
  background: #f59e0b;
}

.tents-btn-collect {
  background: #60a5fa;
  color: #1e3a8a;
}

.tents-btn-collect:hover {
  background: #3b82f6;
}

/* Empty State */
.tents-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}

.tents-empty-state svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.tents-empty-state h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.tents-empty-state p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #9ca3af;
}

/* Calendar Placeholder */
.tents-calendar-placeholder {
  text-align: center;
  padding: 80px 20px;
  color: #6b7280;
}

.tents-calendar-placeholder h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.tents-calendar-placeholder p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #9ca3af;
}

/* Text Muted Helper */
.text-muted {
  color: #9ca3af;
  font-size: 14px;
}

/* ========================================
   CONFIRMATION MODAL
   ======================================== */
.tents-confirm-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.tents-confirm-modal-overlay.active {
  display: flex;
}

.tents-confirm-modal {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tents-confirm-modal-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.tents-confirm-modal-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #4F46E5;
  margin: 0;
}

.tents-confirm-modal-body {
  padding: 24px;
}

.tents-confirm-modal-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4b5563;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.tents-inventory-preview {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  font-family: 'Poppins', sans-serif;
}

.tents-inventory-preview.hidden {
  display: none;
}

/* Confirmation modal input (rejection reason, etc.) */
.tents-confirm-input {
  margin-top: 16px;
}

.tents-confirm-input label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.tents-confirm-input textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #111827;
  resize: vertical;
  min-height: 100px;
  box-sizing: border-box;
}

.tents-confirm-input textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  border-color: #4F46E5;
}

.tents-inventory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.tents-inventory-item:last-child {
  margin-bottom: 0;
}

.tents-inventory-label {
  font-weight: 600;
  color: #374151;
  flex: 0 0 80px;
}

.tents-inventory-change {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.tents-inventory-old,
.tents-inventory-new {
  font-weight: 600;
  font-size: 18px;
}

.tents-inventory-old {
  color: #6b7280;
}

.tents-inventory-new {
  color: #059669;
}

.tents-inventory-arrow {
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
}

.tents-confirm-modal-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.tents-confirm-btn-yes,
.tents-confirm-btn-no {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 80px;
}

.tents-confirm-btn-yes {
  background: #4F46E5;
  color: white;
}

.tents-confirm-btn-yes:hover {
  background: #4338CA;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.3);
}

.tents-confirm-btn-no {
  background: #ef4444;
  color: white;
}

.tents-confirm-btn-no:hover {
  background: #dc2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}

/* ==========================================
   BULK ACTION BAR
   ========================================== */
.tents-bulk-action-bar {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #1f2937;
  padding: 20px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 999;
  animation: slideUp 0.3s ease-out;
  border: 2px solid #e5e7eb;
  max-width: 95%;
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 100px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.tents-bulk-action-bar #selectedCount,
.tents-bulk-action-bar #selectedCountConference {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  padding-right: 24px;
  border-right: 2px solid #e5e7eb;
  white-space: nowrap;
}

.tents-bulk-action-bar button {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tents-bulk-action-bar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tents-bulk-action-bar button:active {
  transform: translateY(0);
}

/* Approve Button - Green */
.tents-bulk-action-bar .tents-bulk-approve {
  background: #10b981;
  color: white;
}

.tents-bulk-action-bar .tents-bulk-approve:hover {
  background: #059669;
}

/* Deny Button - Red */
.tents-bulk-action-bar .tents-bulk-deny {
  background: #ef4444;
  color: white;
}

.tents-bulk-action-bar .tents-bulk-deny:hover {
  background: #dc2626;
}

/* Complete Button - Indigo */
.tents-bulk-action-bar .tents-bulk-complete {
  background: #4f46e5;
  color: white;
}

.tents-bulk-action-bar .tents-bulk-complete:hover {
  background: #4338ca;
}

/* Archive Button - Orange */
.tents-bulk-action-bar .tents-bulk-archive {
  background: #f97316;
  color: white;
}

.tents-bulk-action-bar .tents-bulk-archive:hover {
  background: #ea580c;
}

/* Unarchive Button - Purple */
.tents-bulk-action-bar .tents-bulk-unarchive {
  background: #8b5cf6;
  color: white;
}

.tents-bulk-action-bar .tents-bulk-unarchive:hover {
  background: #7c3aed;
}

/* Clear Selection Button - Gray */
.tents-bulk-action-bar .tents-bulk-clear {
  background: #f3f4f6;
  color: #4b5563;
  border: 1px solid #d1d5db;
}

.tents-bulk-action-bar .tents-bulk-clear:hover {
  background: #e5e7eb;
  color: #1f2937;
}

/* Bulk Export Dropdown Styles */
.tents-bulk-export-dropdown {
  position: relative;
  display: inline-block;
}

.tents-bulk-action-bar .tents-bulk-export {
  background: #059669;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tents-bulk-action-bar .tents-bulk-export:hover {
  background: #047857;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.tents-bulk-action-bar .tents-bulk-export:active {
  transform: translateY(0);
}

.tents-bulk-export-menu {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 220px;
  z-index: 1000;
  overflow: hidden;
}

.tents-bulk-export-menu .tents-dropdown-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #374151;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tents-bulk-export-menu .tents-dropdown-item:hover {
  background: #f3f4f6;
}

.tents-bulk-export-menu .tents-dropdown-item:active {
  background: #e5e7eb;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .tents-bulk-action-bar {
    flex-wrap: wrap;
    padding: 16px 24px;
    gap: 12px;
  }
  
  .tents-bulk-action-bar #selectedCount,
  .tents-bulk-action-bar #selectedCountConference {
    border-right: none;
    padding-right: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
  }
  
  .tents-bulk-action-bar button {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.bulk-action-buttons .tents-btn-secondary:hover {
  background: rgba(107, 114, 128, 0.4);
}

/* ===================================
   PAGINATION STYLES
   =================================== */

/* Pagination Info Bar (top of table) */
.pagination-info-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px 8px 0 0;
  margin-bottom: -1px; /* Merge with table border */
  font-size: 14px;
  color: #374151;
}

.pagination-info {
  font-weight: 500;
}

.pagination-info strong {
  color: #111827;
  font-weight: 600;
}

/* Items Per Page Selector */
.pagination-per-page {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-per-page label {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

.pagination-per-page select,
#itemsPerPageSelect,
#itemsPerPageSelectConference {
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #ffffff;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pagination-per-page select:hover,
#itemsPerPageSelect:hover,
#itemsPerPageSelectConference:hover {
  border-color: #9ca3af;
}

.pagination-per-page select:focus,
#itemsPerPageSelect:focus,
#itemsPerPageSelectConference:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Pagination Navigation Controls (bottom of table) */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-top: none;
  border-radius: 0 0 8px 8px;
  margin-bottom: 20px;
}

/* Pagination Buttons (First, Previous, Next, Last) */
.pagination-btn {
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-btn:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: none;
}

.pagination-btn:disabled {
  background: #f9fafb;
  color: #d1d5db;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Page Number Buttons */
.pagination-page {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pagination-page:hover:not(.pagination-page-active) {
  background: #f3f4f6;
  border-color: #9ca3af;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.pagination-page:active:not(.pagination-page-active) {
  transform: translateY(0);
  box-shadow: none;
}

/* Active Page Number */
.pagination-page-active {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
  font-weight: 600;
  cursor: default;
  box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

/* Ellipsis Separator */
.pagination-ellipsis {
  padding: 8px 4px;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
  user-select: none;
}

/* Responsive Pagination */
@media (max-width: 768px) {
  .pagination-info-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pagination-controls {
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
  }

  .pagination-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .pagination-page {
    min-width: 36px;
    height: 36px;
    padding: 6px 10px;
    font-size: 13px;
  }

  /* Hide First/Last buttons on mobile to save space */
  .pagination-btn:first-child,
  .pagination-btn:last-child {
    display: none;
  }
}

/* Inventory Card */
.inventory-card {
  background: #F5F3FF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
  text-align: center; /* ✅ Ensures everything aligns nicely */
  display: flex;
  flex-direction: column;
  align-items: center;
}



.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 200px;
  margin-bottom: 32px;
}

.inventory-item {
  text-align: center;
}

.item-image {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-item h3 {
  color: #2319B2;
  font-family: 'League Spartan', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.item-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.item-fields label {
  display: grid;
  grid-template-columns: 120px 80px;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #333;
  padding: 0 20px;
}

.item-fields input {
  width: 80px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: right;
  font-size: 14px;
  justify-self: end;
}

/* Style for the static text display (when not editing) */
.item-fields .static-value {
  text-align: right;
  width: 80px;
  justify-self: end;
}

.item-fields input[readonly] {
  background: #f5f5f5;
}

.inventory-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 5px;
}

.edit-btn, .save-btn {
  padding: 12px 32px;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, opacity 0.2s;
}

.edit-btn {
  background: #ef4444;  /* Red for No button */
}

.save-btn {
  background: #3b82f6;  /* Blue for Yes button */
}

.edit-btn:hover {
  background: #dc2626;  /* Darker red on hover */
}

.save-btn:hover {
  background: #2563eb;  /* Darker blue on hover */
}

.save-btn:disabled {
  background: #99ccff;
  cursor: not-allowed;
  opacity: 0.7;
}


/* Reset and base */
.um-body,
.um-body * {
  box-sizing: border-box;
}

.um-body,
.um-html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

/* Layout */
.um-body {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Sidebar styles */
.um-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #2f21a1 0%, #2719a1 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  font-size: 14px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  user-select: none;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.um-sidebar-header {
  margin-bottom: 30px;
  text-align: center;
}

.um-sidebar-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.um-header-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.um-header-subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #b5b5b5;
}

/* Navigation */
.um-sidebar-nav {
  flex-grow: 1;
}

.um-sidebar-link {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: #bfc1de;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.um-sidebar-link:hover,
.um-sidebar-link.um-active {
  background-color: #fff;
  color: #2f21a1;
  font-weight: 700;
}

.um-sidebar-link.um-active {
  box-shadow: inset 4px 0 0 #fecd1a;
}

.um-nav-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.um-sidebar-link.um-active .um-nav-icon {
  filter: none;
}

/* Dropdowns */
.um-sidebar-dropdown {
  margin-top: 8px;
}

.um-dropdown-toggle {
  justify-content: space-between;
}

.um-dropdown-arrow {
  font-size: 14px;
  color: inherit;
  margin-left: auto;
}

.um-dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 24px;
  margin-top: 4px;
}

.um-dropdown-content .um-dropdown-link {
  padding: 6px 14px;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-radius: 3px;
  transition: color 0.3s ease;
}

.um-dropdown-content .um-dropdown-link:hover {
  color: #fff;
}

.um-sidebar-dropdown.um-open > .um-dropdown-content {
  display: flex;
}

/* Sidebar footer */
.um-sidebar-footer {
  margin-top: auto;
  padding-top: 15px;
}

.um-logout-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: 9px 0;
  cursor: pointer;
  border-radius: 6px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.um-logout-btn:hover {
  background-color: #fecd1a;
  color: #2f21a1;
  border-color: #fecd1a;
}

/* Hero/Header */
.um-hero-section {
  position: relative;
  background: url('Assets/BrgyBuilding.jpg') no-repeat center center/cover;
  height: 180px;
  padding: 40px 40px 40px 40px;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.7);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  font-weight: 700;
  text-align: center;
  user-select: none;
}

.um-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(47, 33, 161, 0.90), rgba(47, 33, 161, 0.85));
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 0;
}

.um-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  width: 100%;
}

.um-hero-content h1 {
  font-size: 32px;
  letter-spacing: 1px;
  margin: 0 0 15px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.um-highlight-yellow {
  color: #fecd1a;
  font-size: 32px;
}

.um-hero-content p {
  font-weight: 400;
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: 0.5px;
  line-height: 1.5;
  user-select: text;
  opacity: 0.9;
}

/* Main content area */
.um-main-content {
  background: #f8f9fb;
  padding: 0;
  width: calc(100% - 260px);
  overflow-y: auto;
  font-size: 14px;
  height: 100vh;
}

.um-user-management-container {
  max-width: 1024px;
  margin: 0 auto;
}

/* User Management Stats Card */
.um-stats-card {
  background: #fff;
  border: 3px solid #2f21a1;
  border-radius: 20px 20px 20px 20px;
  margin: 25px auto;
  max-width: 1400px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.um-stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #2f21a1 0%, #4a3fc7 100%);
}

.um-stats-number {
  font-size: 48px;
  font-weight: 700;
  color: #2f21a1;
  line-height: 1;
  letter-spacing: -1px;
  padding: 30px 35px 5px 35px;
}

.um-stats-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0 35px 25px 35px;
}

/* Admin Content Card Container */
.admin-content-card {
  max-width: 1400px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 25px 35px 40px 35px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Tabs container */
.um-tabs-wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px 40px 25px;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.06);
  user-select: none;
}

/* Tabs navigation */
.um-tabs-nav {
  display: flex;
 
  margin-bottom: 20px;
  gap: 0;
}

.um-tabs-btn {
  background: none;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  font-weight: 600;
  color: #2f21a1;
  font-size: 14px;
  transition: all 0.2s ease;
  user-select: none;
  border-bottom: 4px solid transparent;
  position: relative;
  bottom: -3px;
}

.um-tabs-btn:hover {
  color: #1f1191;
  background-color: rgba(47, 33, 161, 0.05);
}

.um-tabs-btn.um-active {
  border-bottom-color: #2f21a1;
  color: #2f21a1;
  font-weight: 700;
  background-color: transparent;
}

.um-tabs-btn.um-active:hover {
  background-color: transparent;
}

/* Search / Filters */
.um-filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0 25px 0;
  font-size: 12px;
}

.um-filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.um-filters-row label {
  font-weight: 600;
  color: #1f2937;
  font-size: 12px;
  margin-bottom: 0;
  display: block;
}

.um-filter-input,
.um-filter-select,
.um-filter-date {
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  width: 100%;
  transition: all 0.2s ease;
  outline: none;
  background-color: #fff;
  font-family: inherit;
  color: #374151;
  height: 38px;
  box-sizing: border-box;
}

.um-filter-date {
  line-height: normal;
}

.um-filter-input:focus,
.um-filter-select:focus,
.um-filter-date:focus {
  border-color: #2f21a1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 33, 161, 0.1);
}

/* Additional enhancements */
.um-filter-input::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

.um-filter-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Visually hidden utility for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Table scroll wrapper */
.um-table-scroll-wrapper {
  position: relative;
  margin-top: 20px;
}

/* Top scrollbar */
.um-table-scroll-top {
  overflow-x: auto;
  overflow-y: hidden;
  height: 20px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #f8f9fa;
}

.um-table-scroll-top > div {
  height: 1px;
}

.um-table-scroll-top::-webkit-scrollbar {
  height: 8px;
}

.um-table-scroll-top::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.um-table-scroll-top::-webkit-scrollbar-thumb {
  background: #2f21a1;
  border-radius: 4px;
}

.um-table-scroll-top::-webkit-scrollbar-thumb:hover {
  background: #1f1191;
}

/* Users table container with scroll */
.um-table-container {
  max-height: 500px;
  overflow: auto;
  border-radius: 12px;
  box-shadow: 0 0 14px rgb(0 0 0 / 0.04);
  margin-top: 20px;
  width: 100%;
}

/* Hide horizontal scrollbar when table fits */
.um-table-scroll-top {
  overflow-x: auto;
  overflow-y: hidden;
  height: 20px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: #f8f9fa;
  display: none; /* Hide top scrollbar since we removed the need for horizontal scroll */
}

/* Custom scrollbar for table container */
.um-table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.um-table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.um-table-container::-webkit-scrollbar-thumb {
  background: #2f21a1;
  border-radius: 4px;
}

.um-table-container::-webkit-scrollbar-thumb:hover {
  background: #1f1191;
}

/* Users table */
.um-users-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  table-layout: auto;
}

.um-users-table thead {
  background-color: #ffc107;
  color: #000;
  font-weight: 700;
  user-select: none;
}

.um-users-table thead th {
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
  font-weight: 700;
  font-size: 13px;
  color: #000;
  white-space: nowrap;
}

/* Column width optimization */
.um-users-table thead th:nth-child(1) { /* User */
  width: 30%;
  min-width: 220px;
}

.um-users-table thead th:nth-child(2) { /* Contact Number */
  width: 14%;
  min-width: 130px;
}

.um-users-table thead th:nth-child(3) { /* Address */
  width: 16%;
  min-width: 130px;
}

.um-users-table thead th:nth-child(4) { /* Created */
  width: 16%;
  min-width: 140px;
}

.um-users-table thead th:nth-child(5) { /* Status */
  width: 12%;
  min-width: 100px;
  text-align: center;
}

.um-users-table thead th:nth-child(6) { /* Role */
  width: 12%;
  min-width: 100px;
  text-align: center;
}

.um-users-table thead th:nth-child(7) { /* Actions */
  width: 80px;
  text-align: center;
}

.um-users-table tbody tr {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.15s ease;
}

.um-users-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.um-users-table tbody tr:hover {
  background-color: #f5f5f5;
}

.um-users-table tbody td {
  padding: 12px 15px;
  vertical-align: middle;
  color: #374151;
  font-size: 13px;
  line-height: 1.4;
}

/* Align specific columns */
.um-users-table tbody td:nth-child(5), /* Status */
.um-users-table tbody td:nth-child(6), /* Role */
.um-users-table tbody td:nth-child(7) { /* Actions */
  text-align: center;
}

/* Address column - add ellipsis for very long addresses */
.um-users-table tbody td:nth-child(3) {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.um-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #2f21a1;
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  user-select: none;
  flex-shrink: 0;
}

.um-user-info {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #212121;
}

.um-user-name {
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.2;
  font-size: 13px;
}

.um-user-email {
  font-weight: 400;
  color: #6b7280;
  font-size: 11px;
  user-select: text;
}

/* Status labels */
.um-status-label {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  user-select: none;
  display: inline-block;
  text-align: center;
  min-width: 65px;
}

.um-status-active {
  background: #d4edda;
  color: #155724;
  border: none;
}

.um-status-inactive {
  background: #f8d7da;
  color: #721c24;
  border: none;
}

/* Role badges */
.um-role-badge {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  min-width: 65px;
  text-align: center;
}

.um-role-user {
  background: #d1fae5;
  color: #059669;
}

.um-role-admin {
  background: #ddd6fe;
  color: #2f21a1;
}

.um-role-superadmin {
  background: #fed7aa;
  color: #d97706;
}

/* Change role button */
.um-btn-change-role {
  margin-left: 10px;
  padding: 4px 12px;
  background: #2f21a1;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.um-btn-change-role:hover {
  background: #1e1570;
}

/* Edit user button */
.um-btn-edit-user {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-right: 10px;
}

.um-btn-edit-user:hover {
  background: #1d4ed8;
}

.um-btn-edit-user svg {
  flex-shrink: 0;
}

/* Modal header actions container */
.um-modal-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Actions Dropdown Menu */
.um-actions-dropdown {
  position: relative;
  display: inline-block;
}

.um-actions-menu-btn {
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6b7280;
}

.um-actions-menu-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #374151;
}

.um-actions-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 4px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.um-actions-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.um-dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f3f4f6;
}

.um-dropdown-item:last-child {
  border-bottom: none;
}

.um-dropdown-item:hover {
  background: #f9fafb;
}

.um-dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.um-dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

/* Old action buttons - kept for backwards compatibility but hidden */
.um-action-btn {
  display: none;
}

.um-btn-disable {
  background-color: #dc3545;
  border: none;
}

.um-btn-disable:hover {
  background-color: #bb2d3b;
  transform: translateY(-1px);
}

/* Button container so they align properly */
.um-table-actions {
  white-space: nowrap;
}

/* Scrollbar in main content */
.um-main-content::-webkit-scrollbar {
  width: 8px;
}

.um-main-content::-webkit-scrollbar-track {
  background: transparent;
}

.um-main-content::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 5px;
}

.um-main-content::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.22);
}

/* Responsive Design */
@media (max-width: 992px) {
  .um-sidebar {
    width: 230px;
  }

  .um-main-content {
    padding: 25px 20px;
    width: calc(100% - 230px);
  }

  .um-users-table thead th,
  .um-users-table tbody td {
    padding: 8px 12px;
  }
}

@media (max-width: 600px) {
  .um-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    height: 100%;
    z-index: 1000;
    transition: left 0.3s ease;
  }

  .um-sidebar.um-open {
    left: 0;
  }

  .um-main-content {
    width: 100%;
    padding: 20px 15px;
  }
}

/* User Details Modal */
.um-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.um-modal-overlay.active {
  display: flex;
}

.um-modal {
  background: white;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.um-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #2f21a1 0%, #1a1464 100%);
}

.um-modal-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.um-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.um-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.um-modal-body {
  padding: 24px;
}

.um-user-detail-card {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
  margin-bottom: 16px;
}

.um-user-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e5e7eb;
}

.um-user-detail-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f21a1 0%, #1a1464 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.um-user-detail-name {
  flex: 1;
}

.um-user-detail-name h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
}

.um-user-detail-name .um-user-email-text {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.um-user-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.um-user-detail-row:last-child {
  margin-bottom: 0;
}

.um-user-detail-row svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.um-user-detail-row strong {
  color: #374151;
  font-weight: 600;
}

.um-user-detail-row span {
  color: #4b5563;
}

.um-user-requests-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e5e7eb;
}

.um-user-requests-section h4 {
  font-family: 'League Spartan', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.um-request-item {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.um-request-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.um-request-item:last-child {
  margin-bottom: 0;
}

.um-request-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
}

.um-request-type {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
}

.um-request-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.um-request-detail-row:last-child {
  margin-bottom: 0;
}

.um-request-detail-row svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.um-no-requests {
  text-align: center;
  padding: 30px 20px;
  color: #9ca3af;
}

.um-no-requests svg {
  margin: 0 auto 12px;
  display: block;
}

.um-no-requests p {
  margin: 0;
  font-size: 14px;
}

/* Edit User Form Styles */
.um-form-group {
  margin-bottom: 20px;
}

.um-form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
  font-family: 'League Spartan', sans-serif;
}

.um-form-group input[type="text"],
.um-form-group input[type="tel"],
.um-form-group select,
.um-form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #374151;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Poppins', sans-serif;
}

.um-form-group input:focus,
.um-form-group select:focus,
.um-form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.um-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.um-error-message {
  display: block;
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  min-height: 16px;
}

.um-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.um-btn-cancel,
.um-btn-save {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'League Spartan', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.um-btn-cancel {
  background: #f3f4f6;
  color: #374151;
}

.um-btn-cancel:hover {
  background: #e5e7eb;
}

.um-btn-save {
  background: #2563eb;
  color: white;
  min-width: 140px;
  justify-content: center;
}

.um-btn-save:hover:not(:disabled) {
  background: #1d4ed8;
}

.um-btn-save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.um-btn-spinner {
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* User Manager Confirmation Modal */
.um-confirm-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.um-confirm-modal-overlay.active {
  display: flex;
}

.um-confirm-modal {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: umModalSlideIn 0.3s ease-out;
}

@keyframes umModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.um-confirm-modal-header {
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.um-confirm-modal-header h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #2f21a1;
  margin: 0;
}

.um-confirm-modal-body {
  padding: 24px;
}

.um-confirm-modal-body p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4b5563;
  margin: 0;
  line-height: 1.6;
}

.um-confirm-modal-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.um-confirm-btn-yes,
.um-confirm-btn-no {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 90px;
}

.um-confirm-btn-yes {
  background: #2f21a1;
  color: white;
}

.um-confirm-btn-yes:hover {
  background: #1a1464;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(47, 33, 161, 0.3);
}

.um-confirm-btn-no {
  background: #6b7280;
  color: white;
}

.um-confirm-btn-no:hover {
  background: #4b5563;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(107, 114, 128, 0.3);
}

.um-confirm-btn-yes.danger {
  background: #ef4444;
}

.um-confirm-btn-yes.danger:hover {
  background: #dc2626;
  box-shadow: 0 4px 6px -1px rgba(239, 68, 68, 0.3);
}
/* ============================================================================
   COMPLETE RESPONSIVE MEDIA QUERIES - NO WHITE SPACES
   From Laptop 1024px → Tablet 768px → Mobile 425px
   All sections included: Navigation, Hero, Floating Card, Calendar, Services,
   About, Contact, Footer, Login, Signup, Profile, Request Forms, Calendars
   ============================================================================ */

/* ===================================
   LAPTOP: 1024px and below
   =================================== */
@media screen and (max-width: 1024px) {
  
  /* Navigation */
  header {
    padding: 14px 18px;
  }
  
  nav ul {
    gap: 10px;
    margin-right: 15px;
    font-size: 16px;
  }
  
  .logo img {
    width: 42px;
    height: 42px;
  }
  
  .logo span {
    font-size: 13px;
  }
  
  /* Hero Sections */
  .hero-landing img {
    height: 350px;
  }
  
  .hero-landingtext {
    margin-left: 80px;
  }
  
  .hero-landingtext h1 {
    font-size: 55px;
    margin-top: -280px;
  }
  
  .hero-landingtext h2 {
    font-size: 55px;
  }
  
  .hero-landingtext p {
    font-size: 18px;
  }
  
  /* Floating Card */
  .floating-card-wrap {
    margin-top: 70px;
  }
  
  .floating-card {
    width: 680px;
    padding: 16px 28px;
    gap: 32px;
  }
  
  .floating-card .quick-item img {
    width: 90px;
    height: 90px;
  }
  
  /* Calendar Section */
  .calendar-section {
    padding: 35px 20px 55px 20px;
  }
  
  .calendar-Title {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
  
  .calendar-desc {
    font-size: 0.95rem;
  }
  
  .calendar-card {
    width: 500px;
    height: 240px;
  }
  
  .calendar-img {
    width: 170px;
    height: 170px;
  }
  
  /* Services Section */
  .services-section {
    padding: 45px 20px 55px 20px;
  }
  
  .services-title {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
  
  .service-card-wrapper {
    width: 500px;
  }
  
  .service-card {
    width: 100%;
    height: 460px;
  }
  
  .service-img {
    width: 280px;
    height: 170px;
  }
  
  /* About Section */
  .about-section {
    padding: 45px 20px;
  }
  
  .about-title {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
  
  .about-content {
    max-width: 1100px;
    gap: 35px;
  }
  
  .about-img {
    width: 480px;
    height: 290px;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 45px 20px;
  }
  
  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 14px;
  }
  
  .contact-content {
    max-width: 680px;
  }
  
  /* Footer */
  footer {
    padding: 18px;
    min-height: 340px;
  }
  
  .footer-container {
    margin-top: 35px;
    margin-left: 25px;
  }
  
  .footer-logo {
    margin-left: 25px;
  }
  
  .footer-logo img {
    width: 75px;
  }
  
  .footer-logo p {
    font-size: 23px;
  }
  
  .footer-links h3 {
    font-size: 28px;
  }
  
  .footer-links li,
  .footer-links p {
    font-size: 18px;
  }
  
  /* Request Forms */
  .request-form-section {
    max-width: 1300px;
    padding: 55px 20px;
  }
  
  .request-form-container {
    max-width: 850px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  /* Calendar Pages */
  .calendar-center-section{
    margin-bottom: 90px;
  }
  .calendar-container {
    max-width: 1350px;
  }
  
  .calendar-grid {
    width: 96%;
  }
  
  .calendar-date {
    min-height: 120px;
  }
  .contact-cards {
    width: 800px;
  }
  .contact-card {
    width: 340px;
    height: 200px;
}
.contact-details  {
    font-size: 10px;
  }
}

/* ===================================
   TABLET: 768px and below
   =================================== */
@media screen and (max-width: 768px) {
  
  /* Navigation */
  header {
    padding: 13px 16px;
  }
  
  nav ul {
    gap: 25px;
    margin-right: 12px;
    font-size: 15px;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .logo span {
    font-size: 12px;
  }
  
  .dropdown-menu {
    min-width: 160px;
  }
  
  /* Hero Sections */
  .hero {
    height: 180px;
  }
  
  .hero img {
    height: 180px;
  }
  
  .hero-text h1 {
    font-size: 70px;
  }
  
  .hero-text p {
    font-size: 16px;
  }
  
  .hero-landing img {
    height: 320px;
  }
  
  .hero-landingtext {
    margin-left: 60px;
  }
  
  .hero-landingtext h1 {
    font-size: 48px;
    margin-top: -240px;
  }
  
  .hero-landingtext h2 {
    font-size: 48px;
  }
  
  .hero-landingtext p {
    font-size: 16px;
  }
  
  /* Floating Card */
  .floating-card-wrap {
    margin-top: 60px;
    height: 180px;
  }
  
  .floating-card {
    width: 95%;
    max-width: 650px;
    padding: 14px 24px;
    gap: 28px;
  }
  
  .floating-card .quick-item img {
    width: 85px;
    height: 85px;
  }
  
  .floating-card .quick-label {
    font-size: 12px;
  }
  
  /* Calendar Section */
  .calendar-section {
    padding: 32px 18px 50px 18px;
  }
  
  .calendar-Title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .calendar-desc {
    font-size: 0.9rem;
  }
  
  .calendar-cards {
    gap: 35px;
    flex-direction: column;
    align-items: center;
  }
  
  .calendar-card {
    width: 100%;
    max-width: 500px;
    height: 230px;
  }
  
  .calendar-img {
    width: 160px;
    height: 160px;
  }
  
  .calendar-label-main {
    font-size: 28px;
  }
  
  .calendar-label-sub {
    font-size: 18px;
  }
  
  /* Services Section */
  .services-section {
    padding: 40px 18px 50px 18px;
  }
  
  .services-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .services-desc {
    font-size: 0.9rem;
  }
  
  .services-cards {
    gap: 35px;
    flex-direction: column;
    align-items: center;
  }
  
  .service-card-wrapper {
    width: 100%;
    max-width: 500px;
  }
  
  .service-card {
    width: 100%;
    max-width: 500px;
    max-width: 500px;
    height: 450px;
  }
  
  .service-img {
    width: 100%;
    max-width: 420px;
    height: 165px;
  }
  
  .service-label-main {
    font-size: 1.05rem;
  }
  
  .service-label-desc {
    font-size: 0.95rem;
  }
  
  /* About Section */
  .about-section {
    padding: 40px 18px;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
  }
  
  .about-img {
    width: 100%;
    height: 280px;
  }
  
  .about-text p {
    font-size: 0.95rem;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 40px 18px;
  }
  
  .contact-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .contact-content {
    flex-direction: column;
    max-width: 500px;
    gap: 0;
  }
  
  .contact-box {
    width: 100%;
    height: auto;
    padding: 28px 24px;
  }
  
  .contact-box-left {
    border-radius: 12px 12px 0 0;
    border-right: none;
    border-bottom: 2px solid #f3ecfa;
  }
  
  .contact-box-right {
    border-radius: 0 0 12px 12px;
  }
  
  /* Footer */
  footer {
    padding: 16px;
    min-height: 320px;
  }
  
  .footer-container {
    margin-top: 30px;
    margin-left: 20px;
    gap: 18px;
  }
  
  .footer-logo {
    margin-left: 20px;
    max-width: 400px;
  }
  
  .footer-logo img {
    width: 70px;
  }
  
  .footer-logo p {
    font-size: 22px;
  }
  
  .footer-links h3 {
    font-size: 26px;
  }
  
  .footer-links li,
  .footer-links p {
    font-size: 17px;
  }
  
  .footer-bottom {
    font-size: 18px;
  }
  
  /* Login/Signup Forms */
  .login-section,
  .signup-section {
    padding: 35px 20px;
  }
  
  .login-form {
    width: 380px;
  }
  
  .signup-container {
    max-width: 850px;
  }
  
  .signup-title {
    font-size: 45px;
  }
  
  .signup-subtitle {
    font-size: 18px;
  }
  
  .signup-row-3col {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  
  .signup-row {
    margin-bottom: 18px;
  }
  
  /* User Profile */
  .profile-main-content {
    padding: 45px 18px;
  }
  
  .user-profile-header {
    max-width: 850px;
  }
  
  .user-profile-name {
    font-size: 2rem;
  }
  
  .user-profile-content {
    max-width: 850px;
    gap: 28px;
  }
  
  .user-info-card {
    padding: 26px 28px;
  }
  
  /* Request Forms */
  .request-hero {
    height: 180px;
  }
  
  .request-hero-content h1 {
    font-size: 3rem;
  }
  
  .breadcrumb {
    font-size: 1rem;
  }
  
  .request-form-section {
    flex-direction: column;
    padding: 35px 18px;
    gap: 25px;
  }
  
  .request-form-sidebar {
    width: 100%;
    padding-top: 0;
  }
  
  .back-to-calendar-btn {
    width: fit-content;
  }
  
  .request-form-container {
    max-width: 100%;
    padding: 30px 18px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 0.92rem;
  }
  
  .form-row-2col,
  .form-row-3col {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  
  /* Calendar Pages */
  .calendar-hero {
    height: 180px;
  }
  
  .calendar-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .calendar-hero-content p {
    font-size: 1rem;
  }
  
  .calendar-top-bar {
    grid-template-columns: 1fr;
    padding: 22px 18px;
    gap: 20px;
  }
  
  .calendar-back-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .calendar-center-section,
  .calendar-right-section {
    width: 100%;
    justify-content: center;
  }
  
  .calendar-month-display {
    font-size: 2rem;
    min-width: 180px;
  }
  
  .month-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.7rem;
  }
  
  .legend-inline {
    gap: 10px;
    padding: 12px;
  }
  
  .tents-legend-item {
    font-size: 12px;
  }
  
  .tents-legend-box {
    width: 26px;
    height: 26px;
  }
  
  .calendar-grid {
    width: 98%;
    margin: 12px auto 22px auto;
  }
  
  .calendar-day-header {
    font-size: 12px;
    padding: 12px 6px;
  }
  
  .calendar-date {
    min-height: 90px;
    padding: 11px 9px;
  }
  
  .calendar-date .date-number {
    font-size: 1.25rem;
  }
  
  .booking-label {
    font-size: 0.75rem;
  }
  
  .tents-booking-preview {
    padding: 5px 7px;
    font-size: 10px;
  }
  
  .tents-preview-purpose {
    font-size: 10px;
  }
  
  .tents-preview-time {
    font-size: 9px;
  }
  
  .tents-calendar-event {
    font-size: 10px;
    padding: 5px 7px;
  }
  
  /* About Page Sections */
  .about-hero,
  .contact-hero,
  .profile-hero {
    height: 180px;
  }
  
  .about-hero-text h1,
  .contact-hero-text h1,
  .profile-hero-text h1 {
    font-size: 3rem;
  }
  
  .about-hero-text p,
  .contact-hero-text p,
  .profile-hero-text p {
    font-size: 1rem;
  }
  
  .history-section {
    padding: 38px 18px;
  }
  
  .history-section .about-content {
    flex-direction: column;
    gap: 28px;
  }
  
  .history-image {
    width: 100%;
    max-width: 500px;
  }
  
  .history-image img {
    width: 100%;
    height: 280px;
  }
  
  .history-text {
    width: 100%;
  }
  
  .history-text h1 {
    font-size: 1.5rem;
  }
  
  .history-text p {
    font-size: 0.95rem;
  }
  
  .mission-vision-section {
    padding: 55px 18px;
  }
  
  .mission-vision-container {
    flex-direction: column;
    gap: 35px;
    max-width: 500px;
  }
  
  .mission-box,
  .vision-box {
    max-width: 100%;
    height: 190px;
    padding: 38px 32px;
  }
  
  .mv-header {
    font-size: 2.4rem;
  }
  
  .mv-text {
    font-size: 1.05rem;
  }
  
  .officials-section {
    padding: 55px 18px;
  }
  
  .officials-section h2 {
    font-size: 2.3rem;
  }
  
  .officials-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
  }
  
  .official-card img {
    height: 230px;
  }
  
  .official-info h3 {
    font-size: 1.25rem;
  }
  
  .official-info p {
    font-size: 0.95rem;
  }
  
  /* Contact Page */
  .contact-page {
    padding: 55px 35px;
  }
  
  .contact-page-title {
    font-size: 2.8rem;
  }
  
  .contact-subtitle {
    font-size: 1.15rem;
  }
  
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .contact-card {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
  
  .contact-icon {
    width: 90px;
    height: 90px;
    padding: 18px;
  }
  
  .contact-icon img {
    width: 100%;
    height: 100%;
  }
  
  .contact-label {
    font-size: 1.05rem;
  }
  
  .contact-details {
    font-size: 0.95rem;
  }
  
  /* Modals */
  .modal-content {
    width: 92%;
    max-width: 600px;
    padding: 32px 38px 90px 38px;
  }
  
  .modal-content h2 {
    font-size: 1.6rem;
  }
  
  .form-group label {
    font-size: 0.92rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 13px;
    font-size: 0.95rem;
  }
}

/* ===================================
   MOBILE TRANSITION: 640px and below
   =================================== */
@media screen and (max-width: 640px) {
  
  /* Navigation */
  nav ul {
    gap: 20px;
    font-size: 14px;
  }
  
  /* Hero Sections */
  .hero-landing img {
    height: 290px;
  }
  
  .hero-landingtext {
    margin-left: 40px;
  }
  
  .hero-landingtext h1 {
    font-size: 40px;
    margin-top: -210px;
  }
  
  .hero-landingtext h2 {
    font-size: 40px;
  }
  
  .hero-landingtext p {
    font-size: 14px;
  }
  
  /* Floating Card */
  .floating-card-wrap {
    margin-top: 50px;
  }
  
  .floating-card {
    flex-direction: row;
    padding: 12px 18px;
    gap: 20px;
  }
  
  .floating-card .quick-item img {
    width: 70px;
    height: 70px;
  }
  
  .floating-card .quick-label {
    font-size: 11px;
  }
  
  /* Calendar Section */
  .calendar-Title {
    font-size: 2.2rem;
  }
  
  .calendar-desc {
    font-size: 1.2rem;
  }
  
  .calendar-card {
    max-width: 420px;
  }
  
  /* Services Section */
  .services-title {
    font-size: 2.2rem;
  }
  
  .service-card {
    max-width: 420px;
  }
  
  /* About/Contact */
  .about-title,
  .contact-title {
    font-size: 2.2rem;
  }
  
  /* Footer */
  .footer-logo p {
    font-size: 20px;
  }
  
  .footer-links h3 {
    font-size: 24px;
  }
  
  .footer-links li,
  .footer-links p {
    font-size: 16px;
  }
  
  /* Forms */
  .signup-title {
    font-size: 38px;
  }
  
  .signup-row-3col {
    grid-template-columns: 1fr;
  }
  
  /* Calendar Pages */
  .calendar-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .calendar-month-display {
    font-size: 1.8rem;
  }
  
  .month-nav-btn {
    width: 46px;
    height: 46px;
  }
  
  .calendar-date {
    min-height: 82px;
  }
}

/* ===================================
   MOBILE: 540px and below
   =================================== */
@media screen and (max-width: 540px) {
  
  /* Navigation */
  .logo img {
    width: 38px;
    height: 38px;
  }
  
  .logo span {
    font-size: 11px;
  }
  
  /* Hero */
  .hero-landing img {
    height: 270px;
  }
  
  .hero-landingtext h1 {
    font-size: 36px;
    margin-top: -190px;
  }
  
  .hero-landingtext h2 {
    font-size: 36px;
  }
  
  /* Floating Card */
  .floating-card {
    width: 92%;
    gap: 16px;
  }
  
  .floating-card .quick-item img {
    width: 65px;
    height: 65px;
  }
  
  /* Sections */
  .calendar-Title,
  .services-title,
  .about-title,
  .contact-title {
    font-size: 2rem;
  }
  
  .calendar-desc {
    font-size: 1.1rem;
  }
  
  /* Calendar Pages */
  .calendar-hero-content h1 {
    font-size: 2rem;
  }
  
  .calendar-month-display {
    font-size: 1.65rem;
  }
  
  .month-nav-btn {
    width: 44px;
    height: 44px;
  }
  
  .calendar-date {
    min-height: 76px;
  }
}

/* ===================================
   MOBILE TRANSITION: 480px and below
   Leads into your 425px breakpoint
   =================================== */
@media screen and (max-width: 480px) and (min-width: 426px) {
  
  /* Navigation */
  header {
    padding: 12px 14px;
  }
  
  .logo img {
    width: 36px;
    height: 36px;
  }
  
  .logo span {
    font-size: 11px;
  }
  
  /* Hero */
  .hero-landing img {
    height: 260px;
  }
  
  .hero-landingtext {
    margin-left: 25px;
  }
  
  .hero-landingtext h1 {
    font-size: 34px;
    margin-top: -185px;
  }
  
  .hero-landingtext h2 {
    font-size: 34px;
  }
  
  .hero-landingtext p {
    font-size: 12px;
  }
  
  /* Floating Card */
  .floating-card-wrap {
    margin-top: 45px;
  }
  
  .floating-card {
    width: 90%;
    padding: 16px;
    gap: 14px;
  }
  
  .floating-card .quick-item img {
    width: 60px;
    height: 60px;
  }
  
  .floating-card .quick-label {
    font-size: 11px;
  }
  
  /* Sections */
  .calendar-section,
  .services-section,
  .about-section,
  .contact-section {
    padding: 32px 12px;
  }
  
  .calendar-Title,
  .services-title,
  .about-title,
  .contact-title {
    font-size: 1.9rem;
  }
  
  .calendar-desc {
    font-size: 0.95rem;
  }
  
  .services-desc {
    font-size: 0.87rem;
  }
  
  .calendar-card,
  .service-card {
    max-width: 350px;
  }
  
  /* Footer */
  footer {
    padding: 15px;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo img {
    width: 65px;
  }
  
  .footer-logo p {
    font-size: 17px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 22px;
    margin-left: 0;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links h3 {
    font-size: 22px;
  }
  
  .footer-links li,
  .footer-links p {
    font-size: 15px;
    text-align: center;
  }
  
  .footer-bottom {
    font-size: 13px;
  }
  
  /* Calendar Pages */
  .calendar-hero-content h1 {
    font-size: 1.7rem;
  }
  
  .calendar-month-display {
    font-size: 1.5rem;
  }
  
  .month-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .calendar-date {
    min-height: 70px;
    padding: 7px 5px;
  }
  
  .calendar-date .date-number {
    font-size: 1rem;
  }
}

/* ===================================
   NOTE: Your existing 425px and below 
   media query takes over after this point
   =================================== */
/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

/* Burger Menu Styles (Hidden by default) */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.burger-menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.burger-menu:active {
  transform: scale(0.95);
}

.burger-menu span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-nav-overlay.active {
  display: block;
}

/* Mobile Navigation Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(135deg, #1a0f7a 0%, #281ABC 50%, #3d2bd9 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Scrollbar styling for mobile nav */
.mobile-nav::-webkit-scrollbar {
  width: 6px;
}

.mobile-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.mobile-nav::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-nav.active {
  right: 0;
}

/* Mobile nav header area */
.mobile-nav::before {
  content: '';
  display: block;
  height: 70px;
  background: rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}




.mobile-nav ul {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.mobile-nav li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #FFD700, #FFA500);
  transform: translateX(-4px);
  transition: transform 0.3s ease;
}

.mobile-nav li:hover::before {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 16px 25px;
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 35px;
  color: #FFD700;
}

.mobile-nav a:active {
  background: rgba(255, 255, 255, 0.15);
}

/* Mobile Dropdown */
.mobile-nav .dropdown {
  position: relative;
}

.mobile-nav .dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 16px 25px;
  color: white;
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav .dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 35px;
  color: #FFD700;
}

.mobile-nav .dropdown-toggle span:last-child {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mobile-nav .dropdown-menu.active + .dropdown-toggle span:last-child,
.mobile-nav .dropdown-menu.active ~ .dropdown-toggle span:last-child {
  transform: rotate(180deg);
}

.mobile-nav .dropdown-menu {
  display: none;
  position: static;
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
  margin: 0;
  border-radius: 0;
  min-width: auto;
  border-left: 3px solid rgba(255, 215, 0, 0.5);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}

.mobile-nav .dropdown-menu.active {
  display: block;
}

.mobile-nav .dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-nav .dropdown-menu a {
  padding: 14px 25px 14px 40px;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}

.mobile-nav .dropdown-menu a::before {
  content: '▸';
  position: absolute;
  left: 25px;
  color: #FFD700;
  font-size: 12px;
}

.mobile-nav .dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  padding-left: 45px;
}

/* User Icon in Mobile Menu */
.mobile-nav .user-icon-li {
  padding: 0;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav .user-icon-li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 25px;
  width: 100%;
}

.mobile-nav .user-icon-li a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 35px;
}

.mobile-nav .user-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 3px;
  background: rgba(255, 255, 255, 0.1);
}

/* Login Button in Mobile Menu */
.mobile-nav .login-btn {
  display: inline-block;
  margin: 20px 25px;
  padding: 14px 30px;
  border: 2px solid white;
  border-radius: 25px;
  text-align: center;
  background: transparent;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav .login-btn:hover {
  background: white;
  color: #281ABC;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  padding-left: 30px;
}

/* ===================================
   MOBILE RESPONSIVE STYLES MOVED
   All @media (max-width: 425px) styles have been consolidated
   to the end of this file for better organization.
   Search for: "CONSOLIDATED RESPONSIVE STYLES"
   =================================== */
  @media screen and (max-width: 425px) {
  /* About Hero Section */
  .about-hero {
    height: 200px;
  }

  .about-hero-text h1 {
    font-size: 36px;
  }

  .about-hero-text p {
    font-size: 12px;
  }

  /* History Section */
  .history-section {
    padding: 30px 15px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .about-content.reverse {
    flex-direction: column; /* Keep same order on mobile */
  }

  .history-image {
    width: 100%;
  }

  .history-image img {
    width: 100%;
    max-width: 340px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
  }

  .history-text {
    width: 100%;
    padding: 0;
  }

  .history-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .history-text p {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  /* Mission and Vision Section */
  .mission-vision-section {
    padding: 30px 15px;
  }

  .mission-vision-container {
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
    margin: 0 auto;
    align-items: center;
  }

  .mission-box,
  .vision-box {
    width: 100%;
    min-height: 180px;
    padding: 25px 20px;
  }

  .mv-header {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .mv-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Officials Section */
  .officials-section {
    padding: 30px 15px 40px 15px;
  }

  .officials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .officials-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .official-card {
    width: 280px;
    padding: 20px;
  }

  .official-card.main-official {
    width: 300px;
  }

  .official-info img {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 12px;
  }

  .official-card.main-official .official-info img {
    width: 150px;
    height: 150px;
  }

  .official-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .official-card.main-official .official-info h3 {
    font-size: 1.2rem;
  }

  .official-info p {
    font-size: 0.85rem;
  }

  .officials-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .officials-bottom .official-card {
    width: 280px;
  }

}
/* ===================================
   CONTACT PAGE MOBILE RESPONSIVE STYLES
   Add these to your existing media query section
   =================================== */

@media screen and (max-width: 425px) {
  
  /* Contact Hero Section */
  .contact-hero {
    height: 200px;
  }

  .contact-hero-text h1 {
    font-size: 36px;
  }

  .contact-hero-text p {
    font-size: 12px;
  }

  /* Contact Page Main Section */
  .contact-page {
    padding: 30px 15px;
  }

  .contact-page-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* Contact Cards Grid */
  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    padding: 0 5px;
  }

  /* Horizontal card layout with icon on the left */
  .contact-card {
    width: 90%;
    max-width: 90%;
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    background: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  /* Circular icon on the left */
  .contact-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-icon img {
    width: 88px !important;
    height: 88px !important;
    object-fit: contain;
    align-items: center;
    border-radius: 50%;
    margin-top: 10px;
  }

  /* Contact info takes remaining space */
  .contact-info {
    flex: 1;
    width: auto;
  }

  .contact-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
    font-family: 'League Spartan', sans-serif;
  }

  .contact-details {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #444;
    text-align: left;
    font-family: 'Poppins', sans-serif;
  }

  .contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-details li {
    margin-bottom: 4px;
  }

  .contact-details br {
    display: block;
    margin: 2px 0;
  }
}

/* ===================================
   LOGIN PAGE MOBILE RESPONSIVE STYLES
   Add these to your existing media query section
   =================================== */

@media screen and (max-width: 425px) {
  
  /* Login Section */
  .login-section {
    padding: 30px 15px;
    min-height: auto;
  }

  .login-form {
    width: 100%;
    max-width: 340px;
    padding: 25px 20px;
    margin: 0 auto;
  }

  /* Form Labels */
  .login-form label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  /* Form Inputs */
  .login-form input[type="email"],
  .login-form input[type="password"],
  .login-form input[type="text"] {
    font-size: 0.9rem;
    padding: 10px 12px;
    
  }

  /* Error Messages */
  .error-message {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  /* Forgot Password Link */
  .forgot-password-link {
    text-align: right;
    margin-bottom: 20px;
  }

  .forgot-password-link a {
    font-size: 0.85rem;
  }

  /* Form Buttons */
  .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
  }

  .btn.primary {
    width: 100%;
  }
  .btn.secondary {
    width: 88%;
  }

  /* Modal Responsive */
  .modal-content {
    width: 90%;
    max-width: 340px;
    padding: 25px 20px;
    margin: 0 auto;
  }

  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .modal-content p {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .form-group input {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  /* Modal Buttons */
  .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .modal-buttons button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .close-modal,
  .save-changes {
    width: 100%;
  }
}

/* ===================================
   MEDIA QUERY: SIGNUP PAGE AT 425px
   =================================== */

@media screen and (max-width: 425px) {

  /* Adjust header padding and layout */
  header {
    padding: 12px 15px;
  }

  .nav-container {
    justify-content: space-between;
  }

  /* Logo adjustments */
  .logo {
    gap: 8px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo span {
    font-size: 11px;
    line-height: 1.2;
  }

  /* Hero Section */
  .hero {
    height: 150px;
  }

  .hero img {
    height: 150px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 12px;
    margin-top: -5px;
  }

  /* Signup Section */
  .signup-section {
    padding: 30px 15px;
  }

  .signup-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .signup-title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .signup-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Form adjustments - stack all fields vertically */
  .signup-row,
  .signup-row-3col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .signup-group {
    width: 100%;
  }

  .signup-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .signup-group input {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Signup Button */
  .signup-buttons {
    margin-top: 25px;
  }

  .signup-btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  /* Login Link */
  .signup-login-link p {
    font-size: 0.85rem;
  }

  /* Custom Alert */
  .custom-alert {
    min-width: 280px;
    max-width: 90%;
    padding: 20px;
  }

  .alert-message {
    font-size: 15px;
    margin: 10px 0 15px;
  }

  .alert-button {
    padding: 8px 20px;
    font-size: 14px;
  }
}
/* ===================================
   USER PROFILE PAGE MOBILE RESPONSIVE
   Add this to your style.css file
   =================================== */

@media screen and (max-width: 425px) {
  
  /* User Profile Hero Section */
  .profile-hero {
    height: 150px;
  }

  .profile-hero-text h1 {
    font-size: 42px;
  }

  .profile-hero-text p {
    font-size: 12px;
  }

  /* Profile Main Content */
  .profile-main-content {
    padding: 30px 15px;
  }

  .user-profile-layout {
    margin-top: 20px;
    padding: 0 10px;
  }

  /* Profile Header */
  .user-profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .user-profile-name {
    font-size: 1.6rem;
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .logout-btn {
    width: 100%;
    padding: 12px 20px;
    justify-content: center;
    font-size: 0.95rem;
    border: 2px solid #281abc;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(40, 26, 188, 0.15);
  }

  /* Profile Content - Stack Cards Vertically */
  .user-profile-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* User Info Card */
  .user-info-card {
    padding: 20px 18px;
    min-width: auto;
  }

  .user-info-card h2 {
    font-size: 1.15rem;
    margin-bottom: 15px;
  }

  .info-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .info-label {
    font-size: 0.85rem;
    color: #666;
  }

  .info-value {
    font-size: 0.95rem;
    font-weight: 500;
  }

  /* Profile Action Buttons */
  .user-profile-actions {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .edit-profile-btn,
  .change-password-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Request Status Card */
  .user-request-status {
    padding: 0;
  }

  .request-status-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
  }

  .request-status-header h2 {
    font-size: 1.15rem;
  }

  .request-filters-inline {
    width: 100%;
  }

  .request-filters-inline label {
    font-size: 0.85rem;
  }

  .filter-select {
    flex: 1;
    min-width: auto;
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  /* Request Cards */
  .request-cards {
    height: auto;
    max-height: 350px;
    padding-right: 5px;
  }

  .request-card {
    padding: 14px 16px;
    margin-bottom: 10px;
  }

  .request-card-header h3 {
    font-size: 0.95rem;
  }

  .request-card-body p {
    font-size: 0.8rem;
  }

  .request-timestamp {
    font-size: 0.7rem !important;
  }

  .status-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  /* Make New Request Dropdown */
  .custom-dropdown {
    width: 100%;
  }

  .make-request-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .dropdown-menu {
    width: 100%;
  }

  /* Empty State */
  .empty-state {
    padding: 25px 15px;
  }

  .empty-state-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
  }

  .empty-state-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .empty-state-text {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .empty-state-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  /* Modals */
  .modal-content {
    width: 90%;
    max-width: 340px;
    padding: 25px 20px 80px 20px;
    margin: 5% auto;
  }

  .modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .error-message {
    font-size: 0.75rem;
    margin-top: 4px;
  }

  /* Modal Buttons */
  .modal-buttons {
    flex-direction: column;
    gap: 10px;
    position: static;
    padding-top: 15px;
  }

  .modal-buttons button {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  .close-modal,
  .save-changes {
    width: 100%;
  }

  /* Forgot Password Link */
  .forgot-password-link,
  .modal-forgot-left {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .forgot-password-link a {
    font-size: 0.8rem;
  }

  /* Request Details Modal */
  .request-details-modal {
    max-width: 90%;
    padding: 20px;
  }

  .request-details-modal h2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .detail-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 4px;
  }

  .detail-label {
    font-size: 0.8rem;
    color: #666;
  }

  .detail-value {
    font-size: 0.9rem;
    text-align: left;
    max-width: 100%;
  }

  .modal-actions {
    flex-direction: column;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
    margin-top: 10px;
    gap: 10px;
  }

  .cancel-request-btn,
  .close-details-btn {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  /* Profile Card Container (if using newer layout) */
  .profile-card-container {
    margin: -60px auto 0 auto;
    padding: 20px;
  }

  .profile-header-section {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .profile-avatar {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .profile-actions {
    width: 100%;
    flex-direction: column;
  }

  .profile-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .profile-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 18px;
  }

  .info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .personal-info-card .info-label {
    font-size: 0.8rem;
  }

  .personal-info-card .info-value {
    font-size: 0.9rem;
  }
  .notif-filter-btn{
    width: 80px;
    flex-direction: column;
    font-size: 15px;
    margin-left: 6px;
  }
  .notification-item.unread {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 100%);
  border-left: 4px solid #281abc;
  width: 90%;
}

.notification-item.unread::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 16px;
  width: 10px;
  height: 10px;
  background: #d32f2f;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}
.notification-action-btn.mark-read, .notification-action-btn.delete, .notification-action-btn.view-request{
  width: 20%;
  font-size: 8px;
}
}

/* ============================================================================
   CONSOLIDATED RESPONSIVE STYLES - ORGANIZED BY BREAKPOINT
   All media queries consolidated here for easier maintenance
   Search keywords: @media, responsive, mobile, tablet, desktop
   ============================================================================ */

/* ===================================
   DESKTOP LARGE: 1200px and below
   Target: Large tablets and small desktops
   =================================== */
@media (max-width: 1200px) {
  /* Calendar Grid - Responsive */
  .calendar-grid {
    width: 94%;
  }
}

/* ===================================
   TABLET & LARGER SCREENS: 768px and up
   Target: iPads and larger devices (min-width approach)
   =================================== */
@media (min-width: 768px) {
  /* History Section - Desktop Layout */
  .history-section .about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 30px;
  }

  .about-section history-section .about-content.reverse {
    flex-direction: row-reverse;
  }

  .history-image {
    flex: 1;
    max-width: 50%;
  }

  .history-text {
    flex: 1;
    padding-top: 20px;
  }

  .history-text h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}

/* ===================================
   TABLET: 768px and below
   Target: iPads, tablets, and smaller
   Search: tablet, 768px
   =================================== */
@media (max-width: 768px) {
  /* Time Inputs - Stack Vertically */
  .time-inputs {
    flex-direction: column;
    gap: 15px;
  }
  
  .time-separator {
    display: none;
  }

  /* Mission/Vision - Stack Vertically */
  .mission-vision-container {
    flex-direction: column;
  }
  
  .mission-box, .vision-box {
    max-width: 100%;
  }
  
  /* Officials Grid - Adjust Columns */
  .officials-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .about-hero-text h1 {
    font-size: 2.5rem;
  }

  /* Request Form - Stack Sidebar */
  .request-form-section {
    flex-direction: column;
    padding: 30px 15px;
    gap: 20px;
  }

  .request-form-sidebar {
    width: 100%;
    padding-top: 0;
  }

  .back-to-calendar-btn {
    width: fit-content;
  }

  .request-form-container {
    padding: 0 10px;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .form-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .request-hero-content h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }

  .submit-request-btn {
    width: 100%;
    padding: 14px 30px;
  }

  /* Calendar Page - Responsive Layout */
  .calendar-hero-content h1 {
    font-size: 2rem;
  }

  .calendar-hero-content p {
    font-size: 0.95rem;
  }

  .calendar-top-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .calendar-back-section {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .calendar-center-section,
  .calendar-right-section {
    width: 100%;
    justify-content: center;
  }

  .calendar-month-display {
    font-size: 1.8rem;
    min-width: 180px;
  }

  .calendar-grid {
    border: 2px solid #000;
    width: 98%;
    margin: 10px auto 20px auto;
  }

  .calendar-date {
    min-height: 80px;
    padding: 10px 8px;
  }

  .calendar-date .date-number {
    font-size: 1.1rem;
  }

  .booking-label {
    font-size: 0.7rem;
  }

  .form-row {
    flex-direction: column;
  }

  .modal-content {
    width: 95%;
    padding: 25px 20px;
  }
  
  .month-nav-btn {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
    padding: 10px;
  }
  
  .legend-color {
    width: 24px;
    height: 24px;
  }

  /* User Profile - Filter and Requests */
  .request-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .request-filters-inline {
    justify-content: space-between;
    width: 100%;
  }

  .filter-select {
    flex: 1;
    min-width: auto;
  }

  .custom-dropdown {
    width: 100%;
  }

  /* Admin Internal Booking Form */
  .internal-booking-form-grid {
    grid-template-columns: 1fr;
  }
  
  .internal-booking-modal {
    max-width: 95%;
  }
}

/* ===================================
   SMALL TABLET: 720px and below
   Target: Small tablets
   Search: 720px, small tablet
   =================================== */
@media (max-width: 720px) {
  /* Floating Card - Horizontal Layout */
  .floating-card { 
    flex-direction: row; 
    gap: 18px; 
    padding: 14px; 
  }
  
  /* Hero Image - Reduce Height */
  .hero img { 
    height: 220px; 
  }
}

/* ===================================
   LARGE MOBILE: 600px and below
   Target: Large phones in landscape
   Search: 600px, large mobile
   =================================== */
@media (max-width: 600px) {
  /* Officials Bottom - Center Stack */
  .officials-bottom {
    justify-content: center;
    gap: 18px;
  }
  
  .officials-bottom .official-card {
    max-width: 360px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

/* ===================================
   MODAL ALERTS: 500px and below
   Target: Better modal display on phones
   Search: 500px, modal, alert
   =================================== */
@media (max-width: 500px) {
  /* Custom Alerts - Responsive */
  #customAlert,
  #formAlertBox {
    width: 85%;
    padding: 20px;
  }
  
  #customConfirm {
    width: 85%;
    padding: 20px;
  }
  
  #customConfirm .confirm-buttons {
    flex-direction: column;
  }
  
  #customConfirm .confirm-cancel-btn,
  #customConfirm .confirm-ok-btn {
    width: 100%;
  }
}

/* ===================================
   MOBILE: 480px and below
   Target: Standard mobile phones
   Search: 480px, mobile, phone
   =================================== */
@media (max-width: 480px) {
  /* Request Form - Mobile Adjustments */
  .request-hero {
    height: 150px;
  }

  .request-hero-content h1 {
    font-size: 1.6rem;
  }

  .form-title {
    font-size: 1.4rem;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .back-to-calendar-btn {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  /* Calendar - Mobile Adjustments */
  .back-to-dashboard-btn {
    font-size: 0.7rem;
    padding: 8px 12px;
  }

  .calendar-month-display {
    font-size: 1.5rem;
    min-width: 150px;
  }

  .calendar-day-header {
    font-size: 0.8rem;
    padding: 12px 2px;
  }

  .calendar-date {
    min-height: 70px;
    padding: 8px 5px;
  }

  .calendar-date .date-number {
    font-size: 1rem;
  }

  .booking-label {
    font-size: 0.65rem;
  }

  .month-nav-btn {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }
}

/* ===================================
   MOBILE SMALL: 425px and below
   Target: Standard iPhone/Android phones
   Search: 425px, mobile, smartphone
   NOTE: This is the PRIMARY mobile breakpoint - most styles consolidated here
   =================================== */
@media screen and (max-width: 425px) {
  
  /* ========== NAVIGATION ========== */
  /* Show burger menu, hide desktop nav */
  .burger-menu {
    display: flex;
  }

  nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  /* Adjust header padding and layout */
  header {
    padding: 12px 15px;
  }

  .nav-container {
    justify-content: space-between;
  }

  /* Logo adjustments */
  .logo {
    gap: 8px;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  .logo span {
    font-size: 11px;
    line-height: 1.2;
  }

  /* ========== HERO SECTIONS ========== */
  /* Landing Page Hero */
  .hero-landing img {
    height: 250px;
  }

  .hero-landingtext {
    margin-left: 20px;
    font-size: 30px;
  }

  .hero-landingtext h1 {
    font-size: 32px;
    margin-top: -180px;
  }

  .hero-landingtext h2 {
    font-size: 32px;
  }

  .hero-landingtext p {
    font-size: 12px;
    margin-top: 8px;
  }

  /* Generic Hero (Signup) */
  .hero {
    height: 150px;
  }

  .hero img {
    height: 150px;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text p {
    font-size: 12px;
    margin-top: -5px;
  }

  /* Profile Hero */
  .profile-hero {
    height: 150px;
  }

  .profile-hero-text h1 {
    font-size: 42px;
  }

  .profile-hero-text p {
    font-size: 12px;
  }

  /* About Hero */
  .about-hero {
    height: 200px;
  }

  .about-hero-text h1 {
    font-size: 36px;
  }

  .about-hero-text p {
    font-size: 12px;
  }

  /* Contact Hero */
  .contact-hero {
    height: 200px;
  }

  .contact-hero-text h1 {
    font-size: 36px;
  }

  .contact-hero-text p {
    font-size: 12px;
  }

  /* ========== FLOATING CARD ========== */
  .floating-card-wrap {
    margin-top: 40px;
    height: auto;
  }

  .floating-card {
    flex-direction: row;
    width: 300px;
    padding: 20px 15px;
    gap: 10px;
  }

  .floating-card .quick-item img {
    width: 50px;
    height: 50px;
  }

  .floating-card .quick-label {
    font-size: 12px;
  }

  /* ========== CALENDAR SECTION (Landing) ========== */
  .calendar-section {
    padding: 30px 15px 40px 15px;
  }

  .calendar-Title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .calendar-desc {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .calendar-cards {
    gap: 20px;
    padding: 0 15px;
  }

  .calendar-card {
    width: 340px;
    height: 220px;
  }

  .calendar-img {
    width: 140px;
    height: 140px;
  }

  .calendar-label-main {
    font-size: 24px;
  }

  .calendar-label-sub {
    font-size: 16px;
  }

  /* ========== SERVICES SECTION ========== */
  .services-section {
    padding: 30px 15px 40px 15px;
  }

  .services-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .services-desc {
    font-size: 0.85rem;
    padding: 0 15px;
  }

  .services-cards {
    gap: 25px;
    padding: 0 15px;
  }

  .service-card {
    width: 100%;
    max-width: 340px;
    height: auto;
    padding-bottom: 20px;
  }

  .service-img {
    width: 100%;
    max-width: 280px;
    height: 160px;
    margin-top: 15px;
  }

  .service-info {
    padding: 15px 20px 0 20px;
  }

  .service-label-main {
    font-size: 1rem;
  }

  .service-label-desc {
    font-size: 0.9rem;
  }

  .service-btn {
    font-size: 0.9rem;
    padding: 9px 24px;
  }

  /* ========== ABOUT SECTION (Landing) ========== */
  .about-section {
    padding: 30px 15px;
  }

  .about-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .about-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }

  .about-content.reverse {
    flex-direction: column;
  }

  .about-img {
    width: 100%;
    max-width: 340px;
    height: 220px;
  }

  .about-text p {
    font-size: 0.9rem;
    text-align: justify;
  }

  .about-btn {
    font-size: 0.9rem;
    padding: 9px 24px;
    display: inline-block;
    width: fit-content;
  }

  /* ========== ABOUT PAGE - HISTORY SECTION ========== */
  .history-section {
    padding: 30px 15px;
  }

  .history-image {
    width: 100%;
  }

  .history-image img {
    width: 100%;
    max-width: 340px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
  }

  .history-text {
    width: 100%;
    padding: 0;
  }

  .history-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .history-text p {
    font-size: 0.9rem;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  /* ========== MISSION/VISION SECTION ========== */
  .mission-vision-section {
    padding: 30px 15px;
  }

  .mission-vision-container {
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
    margin: 0 auto;
    align-items: center;
  }

  .mission-box,
  .vision-box {
    width: 100%;
    min-height: 180px;
    padding: 25px 20px;
  }

  .mv-header {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .mv-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* ========== OFFICIALS SECTION ========== */
  .officials-section {
    padding: 30px 15px 40px 15px;
  }

  .officials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .officials-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .official-card {
    width: 280px;
    padding: 20px;
  }

  .official-card.main-official {
    width: 300px;
  }

  .official-info img {
    width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .official-card.main-official .official-info img {
    width: 150px;
    height: 150px;
  }

  .official-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .official-card.main-official .official-info h3 {
    font-size: 1.2rem;
  }

  .official-info p {
    font-size: 0.85rem;
  }

  .officials-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .officials-bottom .official-card {
    width: 280px;
  }

  /* ========== CONTACT SECTION (Landing) ========== */
  .contact-section {
    padding: 30px 15px;
  }

  .contact-title {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .contact-content {
    flex-direction: column;
    max-width: 340px;
    gap: 0;
    padding: 0 15px;
    align-items: center;
  }

  .contact-box {
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 0.85rem;
  }

  .contact-box-left {
    border-radius: 12px 12px 0 0;
    border-right: none;
    border-bottom: 2px solid #f3ecfa;
  }

  .contact-box-right {
    border-radius: 0 0 12px 12px;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 9px 24px;
  }

  /* ========== CONTACT PAGE ========== */
  .contact-page {
    padding: 30px 15px;
  }

  .contact-page-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
    padding: 0 10px;
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* Contact Cards Grid */
  .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    padding: 0 5px;
    
  }

  /* Horizontal card layout with icon on the left */
  .contact-card {
    width: 90%;
    max-width: 90%;
    margin: 0;
    padding: 15px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 15px;
    background: #f5f5f5;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  /* Circular icon on the left */
  .contact-icon {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    align-items: center;
    border-radius: 50%;
  }

  /* Contact info takes remaining space */
  .contact-info {
    flex: 1;
    
  }

  .contact-label {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
    font-family: 'League Spartan', sans-serif;
  }

  .contact-details {
    font-size: 0.67rem;
    line-height: 1.5;
    color: #444;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    
  }

  .contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .contact-details li {
    margin-bottom: 4px;
  }

  .contact-details br {
    display: block;
    margin: 2px 0;
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 20px 15px;
    min-height: auto;
    text-align: left;
  }

  .footer-logo {
    margin-left: 0;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .footer-logo img {
    width: 60px;
  }

  .footer-logo p {
    font-size: 16px;
  }

  .footer-container {
    flex-direction: column;
    gap: 25px;
    margin-left: 0;
    margin-top: 25px;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .footer-links li,
  .footer-links p {
    font-size: 14px;
    text-align: center;
  }

  .footer-links ul {
    padding: 0;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 20px;
  }

  /* ========== LOGIN PAGE ========== */
  .login-section {
    padding: 30px 15px;
    min-height: auto;
  }

  .login-form {
    width: 100%;
    max-width: 340px;
    padding: 25px 20px;
    margin: 0 auto;
  }

  .login-form label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .login-form input[type="email"],
  .login-form input[type="password"],
  .login-form input[type="text"] {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .error-message {
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .forgot-password-link {
    text-align: right;
    margin-bottom: 20px;
  }

  .forgot-password-link a {
    font-size: 0.85rem;
  }

  .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
  }

  .btn.primary {
    width: 100%;
  }
  
  .btn.secondary {
    width: 88%;
  }

  /* Modal Responsive */
  .modal-content {
    width: 90%;
    max-width: 340px;
    padding: 25px 20px;
    margin: 0 auto;
   
  }

  .modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .modal-content p {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .form-group input {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .modal-buttons button {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .close-modal,
  .save-changes {
    width: 100%;
  }

  /* ========== SIGNUP PAGE ========== */
  .signup-section {
    padding: 30px 15px;
  }

  .signup-container {
    max-width: 100%;
    padding: 0 10px;
  }

  .signup-title {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .signup-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .signup-row,
  .signup-row-3col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .signup-group {
    width: 100%;
  }

  .signup-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .signup-group input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .signup-buttons {
    margin-top: 25px;
  }

  .signup-btn {
    width: 100%;
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .signup-login-link p {
    font-size: 0.85rem;
  }

  .custom-alert {
    min-width: 280px;
    max-width: 90%;
    padding: 20px;
  }

  .alert-message {
    font-size: 15px;
    margin: 10px 0 15px;
  }

  .alert-button {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* ========== USER PROFILE PAGE ========== */
  .profile-main-content {
    padding: 30px 15px;
  }

  .user-profile-layout {
    margin-top: 20px;
    padding: 0 10px;
  }

  .user-profile-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }

  .user-profile-name {
    font-size: 1.6rem;
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .logout-btn {
    width: 100%;
    padding: 12px 20px;
    justify-content: center;
    font-size: 0.95rem;
    border: #000 1px solid;
    border-radius: 8px;
  }

  .user-profile-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .user-info-card {
    padding: 20px 18px;
    min-width: auto;
  }

  .user-info-card h2 {
    font-size: 1.15rem;
    margin-bottom: 15px;
  }

  .info-item {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .info-label {
    font-size: 0.85rem;
    color: #666;
  }

  .info-value {
    font-size: 0.95rem;
    font-weight: 500;
  }

  .user-profile-actions {
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
  }

  .edit-profile-btn,
  .change-password-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  .user-request-status {
    padding: 0;
  }

  .request-status-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
  }

  .request-status-header h2 {
    font-size: 1.15rem;
  }

  .request-filters-inline {
    width: 100%;
  }

  .request-filters-inline label {
    font-size: 0.85rem;
  }

  .filter-select {
    flex: 1;
    min-width: auto;
    font-size: 0.85rem;
    padding: 8px 10px;
  }

  .request-cards {
    height: auto;
    max-height: 350px;
    padding-right: 5px;
  }

  .request-card {
    padding: 14px 16px;
    margin-bottom: 10px;
  }

  .request-card-header h3 {
    font-size: 0.95rem;
  }

  .request-card-body p {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .empty-requests {
    padding: 30px 20px;
  }

  .empty-requests p {
    font-size: 0.95rem;
  }

  .modal-profile {
    width: 90%;
    max-width: 340px;
    padding: 25px 20px;
  }

  .modal-profile h2 {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  .profile-details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 18px;
  }

  .info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .personal-info-card .info-label {
    font-size: 0.8rem;
  }

  .personal-info-card .info-value {
    font-size: 0.9rem;
  }
}

/* Burger menu animation when active */
.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   REQUEST FORMS MOBILE RESPONSIVE STYLES
   (Conference Room & Tents/Chairs)
   Add these to your existing media query section
   =================================== */

@media screen and (max-width: 425px) {
  
  /* Request Hero Section */
  .request-hero {
    height: 200px;
  }

  .request-hero-content h1 {
    font-size: 32px;
  }

  .breadcrumb {
    font-size: 11px;
  }

  /* Request Form Section */
  .request-form-section {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  /* Sidebar - Back to Calendar Button */
  .request-form-sidebar {
    width: 100%;
    margin-bottom: 0;
  }

  .back-to-calendar-btn {
    width: 62px;
    max-width: 200px;
    height: 25px;
    display: flex;
    align-items: start;
    justify-content: start;
    font-size: 0.65rem;
     margin-top: -40px
  }

  .back-text {
    text-align: center;
    line-height: 1.3;
  }

  /* Form Container */
  .request-form-container {
    width: 100%;
    max-width: 100%;
    padding: 25px 15px;
  }

  .form-title {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 40px;
  }

  .form-subtitle {
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
  }

  /* Form Rows - Stack Vertically */
  .form-row-2col,
  .form-row-3col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  /* Form Groups */
  .form-group {
    width: 100%;
    margin-bottom: 0;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: block;
  }

  /* Form Inputs */
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="date"],
  .form-group input[type="number"],
  .form-group select {
    width: 95%;
    font-size: 0.9rem;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  /* Time Group (Conference Room) */
  .time-group {
    width: 100%;
  }

  .time-inputs {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
  }

  .time-inputs select {
    flex: 1;
    font-size: 0.85rem;
    padding: 10px 8px;
  }

  .time-separator {
    font-size: 1.2rem;
    color: #666;
  }

  .time-errors {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
  }

  /* Field Notes */
  .field-note {
    font-size: 0.7rem;
    color: #666;
    display: block;
    margin-top: 4px;
    font-style: italic;
  }

  /* Form Note */
  .form-note {
    font-size: 0.8rem;
    margin: 20px 0 15px 0;
    padding: 12px;
    background: #f8f8f8;
    border-left: 3px solid #281abc;
    line-height: 1.5;
  }

  /* Submit Button */
  .form-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .submit-request-btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 1rem;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
  }

  /* Error Messages */
  .error-message {
    font-size: 0.75rem;
    color: #d32f2f;
    margin-top: 4px;
    display: block;
  }

  /* Custom Alert */
  .custom-alert {
    width: 90%;
    max-width: 320px;
    padding: 20px;
    border-radius: 8px;
  }

  .alert-message {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .alert-button {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  /* Form Alert Box */
  .form-alert {
    width: 90%;
    max-width: 320px;
    padding: 15px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  /* Modal Overlay & Content */
  .modal-overlay {
    padding: 15px;
  }

  .modal-content {
    width: 95%;
    max-width: 340px;
    padding: 25px 20px;
    margin: 0 auto;
    border-radius: 12px;
    margin-left: 10px;
  }

  .modal-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .modal-content > p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.5;
  }

  /* Modal Summary */
  .modal-summary {
    margin-bottom: 20px;
  }

  .modal-summary p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .modal-summary strong {
    display: block;
    color: #281abc;
    margin-bottom: 3px;
    font-size: 0.8rem;
  }

  .modal-summary span {
    display: block;
    color: #444;
    padding-left: 0;
    font-size: 0.9rem;
  }

  /* Modal Buttons */
  .modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .cancel-btn,
  .confirm-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
  }

  .cancel-btn {
    background: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
  }

  .confirm-btn {
    background: #281abc;
    color: white;
    border: none;
  }
}

/* ===================================
   CALENDAR PAGES MOBILE RESPONSIVE STYLES
   (Tents & Chairs Calendar + Conference Room Calendar)
   Add these to your existing media query section
   =================================== */

@media screen and (max-width: 425px) {
  
  /* Calendar Hero Section */
  .calendar-hero {
    height: 200px;
  }

  .calendar-hero-content h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  .calendar-hero-content .highlight-yellow {
    font-size: 24px;
  }

  .calendar-hero-content p {
    font-size: 11px;
    padding: 0 10px;
  }

  /* Calendar Container */
  .calendar-container {
    padding: 0 0 30px 0;
  }

  /* Calendar Top Bar - Reorganize for Mobile */
  .calendar-top-bar {
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    gap: 12px;
  }

  /* Back Button Section */
  .calendar-back-section {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .back-to-dashboard-btn {
    width: fit-content;
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .back-arrow {
    font-size: 1rem;
  }

  .back-text {
    line-height: 1.2;
  }

  /* Legend - Compact Horizontal on Mobile */
  .legend-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .tents-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
  }

  .tents-legend-box {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .tents-legend-event {
    width: 50px;
    height: 20px;
    font-size: 9px;
  }

  /* Month Navigation - Center Section */
  .calendar-center-section {
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    order: -1;
  }

  .calendar-month-display {
    font-size: 1.4rem;
    min-width: auto;
  }

  .month-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
  }

  /* Right Section - Hide on Mobile */
  .calendar-right-section {
    display: none;
  }

  /* CALENDAR GRID - FIT TO SCREEN */
  .calendar-grid {
    width: 95%;
    max-width: 95%;
    
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* Equal width columns that fit screen */
    padding: 0;
  }

  /* Calendar Day Headers - Single Row, Fit Screen */
  .calendar-day-header {
    font-size: 10px;
    padding: 8px 2px;
    text-align: center;
    background: #5b21b6;
    color: white;
    border-right: 1px solid #4c1d95;
    border-bottom: 2px solid #000;
    font-weight: 700;
    box-sizing: border-box;
  }

  .calendar-day-header:last-child {
    border-right: none;
  }

  /* Calendar Dates Container - Fit to Screen */
  #calendarDates {
    display: contents; /* Makes children part of parent grid */
  }

  /* Calendar Date Cells - Responsive Width */
  .calendar-date {
    min-height: 75px;
    padding: 4px 2px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 10px;
  }

  /* Remove right border from last column */
  .calendar-date:nth-child(7n) {
    border-right: none;
  }

  /* Remove bottom border from last row */
  .calendar-date:nth-last-child(-n+7) {
    border-bottom: none;
  }

  .calendar-date .date-number {
    font-size: 0.9rem;
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1;
  }
.calendar-date.today {
    background: #dbeafe;
    border: 1px solid #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
    position: relative;
    z-index: 20;
    width: 55px;
}
  /* Empty dates */
  .calendar-date.empty {
    background: #fafafa;
  }

  /* Booking Label - Compact */
  .booking-label {
    font-size: 0.6rem;
    margin-top: 3px;
    line-height: 1.1;
    word-break: break-word;
  }

  /* Booking Preview - Very Compact */
  .tents-booking-preview {
    margin-top: 2px;
    padding: 2px 3px;
    font-size: 4px;
    line-height: 1.2;
    border-radius: 3px;
    width: 40px;
  }

  .tents-preview-purpose {
    font-size: 6px;
    margin-bottom: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tents-preview-time {
    font-size: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Calendar Events (Conference Room) - Compact */
  .tents-calendar-event {
    padding: 2px 3px;
    margin-bottom: 1px;
    font-size: 7px;
    line-height: 1.2;
    border-radius: 3px;
  }

  .tents-event-name {
    font-size: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tents-event-items {
    font-size: 6px;
  }

  .tents-more-bookings {
    font-size: 6px;
    margin-top: 1px;
    padding: 1px 2px;
    border-radius: 2px;
  }

  /* Booking Indicator - Compact */
  .tents-booking-indicator {
    padding: 2px 3px;
    font-size: 7px;
    margin-top: 2px;
    border-radius: 3px;
  }

  /* Remove scroll hint */
  .calendar-container::after {
    display: none;
  }

  /* Modal Overlay */
  .tents-modal-overlay {
    padding: 15px;
  }

  /* Modal */
  .tents-modal {
    width: 95%;
    max-width: 380px;
    max-height: 85vh;
  }

  .tents-modal-header {
    padding: 16px 20px;
  }

  .tents-modal-header h3 {
    font-size: 1.1rem;
  }

  .tents-modal-close {
    font-size: 26px;
    width: 30px;
    height: 30px;
  }

  .tents-modal-body {
    padding: 18px;
  }

  /* Booking Items in Modal */
  .tents-booking-item {
    padding: 14px;
    margin-bottom: 12px;
  }

  .tents-booking-item-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .tents-booking-name {
    font-size: 14px;
  }

  .tents-booking-item-details {
    font-size: 12px;
    gap: 8px;
  }

  .tents-booking-detail-row {
    gap: 8px;
  }

  .tents-booking-detail-row svg {
    width: 14px;
    height: 14px;
  }

  /* Status Badges in Modal */
  .status-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* No Bookings Message */
  .tents-no-bookings {
    padding: 35px 15px;
    font-size: 13px;
  }

  /* Form Modal (if used) */
  .modal {
    padding: 15px;
  }

  .modal-content {
    width: 78%;
    padding: 20px;
    height: auto;
  }

  .modal-content h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  /* Form Rows in Modal */
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-group {
    width: 100%;
  }

  .form-group label {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 95%;
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  /* Time Inputs (Conference Room) */
  .time-inputs {
    flex-direction: column;
    gap: 10px;
  }

  .time-separator {
    display: none;
  }

  .time-inputs select {
    width: 100%;
  }

  /* Modal Buttons */
  .modal-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .close-modal,
  .save-changes {
    width: 100%;
    padding: 11px 20px;
    font-size: 0.9rem;
  }

  /* Toast Notifications */
  #top-right-toast-container {
    top: 10px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
  }

  .tr-toast {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
}

/* ============================================================================
   END OF CONSOLIDATED RESPONSIVE STYLES
   All media queries above this point are organized by breakpoint
   ============================================================================ */

/* ============================================================================
   ADMIN NOTIFICATIONS PAGE STYLES
   ============================================================================ */

/* Notification Badge on Sidebar Link */
.admin-notif-badge {
  display: none;
  background: #dc2626;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  margin-left: auto;
  min-width: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.admin-notif-badge.active {
  display: inline-block;
}

/* Position notification badge on icon when sidebar is collapsed */
.admin-sidebar.collapsed .admin-notif-badge {
  position: absolute;
  top: 8px;
  right: 18px;
  margin-left: 0;
  padding: 2px 5px;
  font-size: 0.6rem;
  min-width: 16px;
}

.admin-notif-badge.pulse {
  animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.05);
  }
}

/* Profile notification badge (user navbar) */
.profile-notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #dc2626;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  display: none;
  line-height: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.profile-notif-badge.active {
  display: inline-block;
  animation: notifPulse 2s infinite;
}

/* Stats Grid */
.admin-notif-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.admin-notif-stat-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.admin-notif-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.admin-notif-stat-card .stat-icon {
  font-size: 2.5rem;
  opacity: 0.9;
}

.admin-notif-stat-card .stat-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #281ABC;
  margin: 0 0 4px 0;
}

.admin-notif-stat-card .stat-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Notification Controls */
.admin-notif-controls {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.admin-notif-filter-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.admin-notif-filter-btn {
  background: #f3f4f6;
  border: 2px solid transparent;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #4b5563;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-notif-filter-btn:hover {
  background: #e5e7eb;
}

.admin-notif-filter-btn.active {
  background: #281ABC;
  color: white;
  border-color: #281ABC;
}

.admin-notif-filter-btn .filter-count {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
  min-width: 22px;
  text-align: center;
}

.admin-notif-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.95);
  color: #281ABC;
  font-weight: 700;
}

.admin-notif-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-notif-dropdown {
  padding: 10px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #4b5563;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  flex: 1;
  min-width: 150px;
}

.admin-notif-dropdown:hover {
  border-color: #281ABC;
}

.admin-notif-dropdown:focus {
  outline: none;
  border-color: #281ABC;
  box-shadow: 0 0 0 3px rgba(40, 26, 188, 0.1);
}

.admin-notif-mark-all-btn {
  background: #281ABC;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.admin-notif-mark-all-btn:hover {
  background: #1f1594;
  transform: translateY(-1px);
}

.admin-notif-mark-all-btn:active {
  transform: translateY(0);
}

.admin-notif-mark-all-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Clear Read Notifications Button */
.admin-notif-clear-btn {
  background: #ef4444;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.admin-notif-clear-btn:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.admin-notif-clear-btn:active {
  transform: translateY(0);
}

.admin-notif-clear-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
}

/* Notifications List Container */
.admin-notif-list-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.admin-notif-list {
  max-height: 600px;
  overflow-y: auto;
  padding: 12px;
}

/* Individual Notification Item */
.admin-notif-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #9ca3af;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s;
  cursor: pointer;
}

.admin-notif-item:hover {
  border-color: #281ABC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}

.admin-notif-item.unread {
  background: #f0f9ff;
  border-left-width: 5px;
  font-weight: 500;
}

/* Priority Border Colors */
.admin-notif-item.priority-high {
  border-left-color: #dc2626;
}

.admin-notif-item.priority-medium {
  border-left-color: #f59e0b;
}

.admin-notif-item.priority-low {
  border-left-color: #3b82f6;
}

.admin-notif-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.admin-notif-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  flex: 1;
}

.admin-notif-item.unread .admin-notif-item-title {
  color: #281ABC;
}

.admin-notif-priority-badge {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-notif-priority-badge.high {
  background: #fee2e2;
  color: #dc2626;
}

.admin-notif-priority-badge.medium {
  background: #fef3c7;
  color: #d97706;
}

.admin-notif-priority-badge.low {
  background: #dbeafe;
  color: #2563eb;
}

.admin-notif-item-message {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 8px 0 12px 0;
}

.admin-notif-item-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 12px;
}

.admin-notif-type-badge {
  background: #e0e7ff;
  color: #4338ca;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.admin-notif-time {
  display: flex;
  align-items: center;
  gap: 4px;
}

.admin-notif-actions-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.admin-notif-action-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.admin-notif-action-btn.mark-read {
  background: #281ABC;
  color: white;
  border: none;
}

.admin-notif-action-btn.mark-read:hover {
  background: #1f1594;
}

.admin-notif-action-btn.view-request {
  background: white;
  color: #281ABC;
  border-color: #281ABC;
}

.admin-notif-action-btn.view-request:hover {
  background: #281ABC;
  color: white;
}

.admin-notif-action-btn.delete {
  background: white;
  color: #dc2626;
  border-color: #dc2626;
}

.admin-notif-action-btn.delete:hover {
  background: #dc2626;
  color: white;
}

/* Loading State */
.admin-notif-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6b7280;
}

.admin-notif-loading .spinner {
  border: 3px solid #e5e7eb;
  border-top-color: #281ABC;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.admin-notif-loading p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Empty State */
.admin-notif-empty {
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
}

.admin-notif-empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

.admin-notif-empty h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0 0 8px 0;
}

.admin-notif-empty p {
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .admin-notif-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .admin-notif-stat-card {
    padding: 16px;
  }

  .admin-notif-stat-card .stat-icon {
    font-size: 2rem;
  }

  .admin-notif-stat-card .stat-content h3 {
    font-size: 1.5rem;
  }

  .admin-notif-controls {
    padding: 16px;
  }

  .admin-notif-filter-tabs {
    gap: 8px;
  }

  .admin-notif-filter-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .admin-notif-actions {
    flex-direction: column;
    gap: 10px;
  }

  .admin-notif-dropdown {
    width: 100%;
    min-width: unset;
  }

  .admin-notif-mark-all-btn {
    width: 100%;
  }

  .admin-notif-list {
    max-height: 500px;
  }

  .admin-notif-item {
    padding: 14px;
  }

  .admin-notif-item-title {
    font-size: 0.95rem;
  }

  .admin-notif-item-message {
    font-size: 0.9rem;
  }

  .admin-notif-actions-row {
    gap: 6px;
  }

  .admin-notif-action-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .admin-notif-stats-grid {
    grid-template-columns: 1fr;
  }

  .admin-notif-item:hover {
    transform: none;
  }
}

/* ============================================================================
   REQUEST HIGHLIGHTING (From Notifications)
   ============================================================================ */
/* User-side request cards - full effects with badge */
.request-card.highlighted-request {
  animation: highlightPulse 2s ease-in-out 3;
  background: linear-gradient(90deg, 
    rgba(255, 215, 0, 0.15) 0%, 
    rgba(255, 215, 0, 0.05) 50%, 
    rgba(255, 215, 0, 0.15) 100%);
  background-size: 200% 100%;
  box-shadow: 
    inset 0 0 0 2px #ffd700,
    0 0 20px rgba(255, 215, 0, 0.3) !important;
  position: relative;
}

/* Admin-side table rows - subtle highlight without position shift */
.tents-requests-table tbody tr.highlighted-request {
  animation: highlightPulse 2s ease-in-out 3;
  background: rgba(255, 215, 0, 0.15) !important;
  box-shadow: inset 0 0 0 2px #ffd700 !important;
  /* NO position: relative to prevent table layout shift */
}

/* User-side badge only */
.request-card.highlighted-request::before {
  content: '👉 From Notification';
  position: absolute;
  top: -12px;
  left: 20px;
  background: #ffd700;
  color: #000;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* Hide badge for admin table rows */
.tents-requests-table tbody tr.highlighted-request::before {
  display: none;
}

@keyframes highlightPulse {
  0%, 100% {
    background-position: 0% 50%;
    box-shadow: 
      inset 0 0 0 2px #ffd700,
      0 0 20px rgba(255, 215, 0, 0.3);
  }
  50% {
    background-position: 100% 50%;
    box-shadow: 
      inset 0 0 0 2px #ffd700,
      0 0 30px rgba(255, 215, 0, 0.5);
  }
}

/* ============================================================================
   USER-SIDE: Mid-phone collapse (426px — 693px)
   Targets user pages with a footer (pages using `body.user-side`)
   Files: `user.html`, `UserProfile.html`, `tents-calendar.html`,
          `conference-room.html`, `tents-chairs-request.html`,
          `conference-request.html`, `ContactPage.html`, etc.
   Purpose: remove horizontal whitespace/gaps between tablet and mobile
            without touching the existing 425px rules.
   ============================================================================ */
@media screen and (min-width: 426px) and (max-width: 693px) {

  /* Ensure page doesn't create horizontal scroll */
  html, body, .user-side {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Hide admin/side panels on user pages */
  .user-side .admin-sidebar,
  .user-side .sidebar,
  .user-side .side-panel {
    display: none !important;
  }

  /* Make main content stretch full width with modest padding */
  .user-side .container,
  .user-side .admin-main,
  .user-side .admin-content,
  .user-side .content,
  .user-side .calendar-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Collapse multi-column cards/grids to a single column */
  .user-side .request-cards,
  .user-side .tents-history-cards-grid,
  .user-side .cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
  }

  /* Images and calendar visuals should not overflow */
  .user-side img,
  .user-side .calendar-grid,
  .user-side .calendar-hero,
  .user-side .hero-landing img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* Reduce large horizontal paddings on specific components */
  .user-side .page-header,
  .user-side .page-actions,
  .user-side .filters-row {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

}

  /* Responsive Navbar: Minimize text and ensure visibility when collapsed */
  @media (max-width: 900px) {
    nav ul {
      gap: 18px;
      font-size: 15px;
    }
    nav a {
      font-size: 15px;
      padding: 8px 10px;
    }
    .logo span {
      font-size: 12px;
    }
  }

  @media (max-width: 768px) {
    nav ul {
      gap: 3px;
      font-size: 14px;
      width: 100%;
      background: #281ABC;
      padding: 0 4px;
      margin: 0;
      border-radius: 0 0 12px 12px;
      box-shadow: 0 8px 24px rgba(40,26,188,0.08);
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
    }
    nav a {
      font-size: 14px;
      padding: 8px 6px;
      width: auto;
      box-sizing: border-box;
      display: block;
      text-align: left;
    }
    .logo span {
      font-size: 11px;
    }
  }

  @media (max-width: 480px) {
    nav ul {
      font-size: 12px;
      gap: 2px;
    }
    nav a {
      font-size: 12px;
      padding: 6px 2px;
    }
    .logo span {
      font-size: 9px;
    }
  }