/* 
   Half Saree & Sweet 16 Ceremony eVite
   Premium Design System & Stylesheet
*/

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=DM+Serif+Display:ital@0;1&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&family=Cinzel:wght@400;600;700;800&family=Fredoka:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette - Mehendi (Henna Green & Marigold Gold) */
  --color-bg-gradient: linear-gradient(135deg, #f0f7f4 0%, #fffdf5 50%, #fff9ec 100%);
  --color-card-bg: #ffffff;
  --color-card-border: rgba(27, 94, 32, 0.12);
  
  --color-pink-primary: #1b5e20;      /* Deep Henna Green */
  --color-pink-light: #a5d6a7;
  --color-pink-glow: rgba(27, 94, 32, 0.12);
  
  --color-blue-primary: #2e7d32;      /* Medium Henna Green */
  --color-blue-light: #c8e6c9;
  --color-blue-glow: rgba(46, 125, 50, 0.12);
  
  --color-green-primary: #ff8f00;     /* Marigold Gold */
  --color-green-light: #ffe0b2;
  --color-green-glow: rgba(255, 143, 0, 0.12);
  
  --color-rose-gold: #1b5e20;         /* Henna Primary */
  --color-gold: #ff9100;              /* Bright Marigold Orange */
  --color-text-dark: #0f172a;         /* Deep Space Charcoal */
  --color-text-muted: #4b5563;        /* Soft Slate */
  
  /* Layout & Spacing */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(27, 94, 32, 0.08), 0 8px 16px -8px rgba(15, 23, 42, 0.05);
  --shadow-lg: 0 20px 40px -10px rgba(27, 94, 32, 0.15), 0 15px 30px -12px rgba(15, 23, 42, 0.08);
  
  /* Fonts */
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Speed */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='300' viewBox='0 0 400 300'%3E%3Ctext x='100' y='75' fill='%231b5e20' font-family='Great Vibes, cursive' font-size='42' opacity='0.032' text-anchor='middle' transform='rotate(-15 100 75)'%3EM %26 M%3C/text%3E%3Ctext x='300' y='225' fill='%231b5e20' font-family='Great Vibes, cursive' font-size='42' opacity='0.032' text-anchor='middle' transform='rotate(-15 300 225)'%3EM %26 M%3C/text%3E%3C/svg%3E"), 
    var(--color-bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .serif-text {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--color-text-dark);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes avatarPopZoom {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-15deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fade-in {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* App Containers */
.container {
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem 1.2rem;
}

/* Header & Hero Section */
.hero-card {
  text-align: center;
  position: relative;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Decorative South Indian Garlands and modern sparkles */
.hero-card::before, .hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 25px;
  background-image: radial-gradient(var(--color-pink-primary) 20%, transparent 20%), 
                    radial-gradient(var(--color-gold) 20%, transparent 20%);
  background-size: 15px 15px;
  background-position: 0 0, 7.5px 7.5px;
  opacity: 0.15;
}

.hero-card::before { top: 0; left: 0; }
.hero-card::after { bottom: 0; left: 0; top: auto; }

.event-eyebrow {
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-rose-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}

.highlight-text {
  font-weight: 700;
  color: var(--color-text-dark);
  background: linear-gradient(120deg, rgba(27, 94, 32, 0.12) 0%, rgba(255, 143, 0, 0.12) 100%);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  display: inline-block;
  transition: var(--transition-fast);
}

.highlight-text:hover {
  transform: scale(1.05);
  background: linear-gradient(120deg, rgba(27, 94, 32, 0.22) 0%, rgba(255, 143, 0, 0.22) 100%);
  box-shadow: 0 4px 10px rgba(27, 94, 32, 0.15);
}

.event-title {
  font-size: 3.1rem;
  font-weight: 850;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  background: linear-gradient(45deg, #ff006e, #fb8500, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.2rem 0;
}

.celebrant-name {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-blue-primary);
  margin-bottom: 1.5rem;
  font-style: normal;
}

/* Event Title Avatars / Layout */
.title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.title-avatar {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid var(--color-gold);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  cursor: pointer;
}

.title-avatar:hover {
  transform: scale(1.08) rotate(3deg);
  border-color: var(--color-pink-primary);
  box-shadow: var(--shadow-lg);
}

.title-text-group {
  flex-grow: 0;
  flex-shrink: 1;
  text-align: center;
}

.avatar-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  opacity: 0;
  animation: avatarPopZoom 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.avatar-container:first-of-type {
  animation-delay: 2.6s;
}

.avatar-container:last-of-type {
  animation-delay: 2.8s;
}

.avatar-caption {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* Quill Editor Font Mappings */
.ql-font-serif {
  font-family: 'Cormorant Garamond', serif !important;
}
.ql-font-sans-serif {
  font-family: 'Inter', sans-serif !important;
}

.welcome-msg {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-text-dark);
  font-weight: 600;
  line-height: 1.6;
  margin: 0.5rem 0 1rem;
  padding: 0.5rem 0;
}

/* Decorative Divider styling */
.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  width: 85%;
  max-width: 420px;
}

.divider-line {
  flex-grow: 1;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--color-gold) 50%, var(--color-pink-primary) 100%);
}

.decorative-divider .divider-line:last-of-type {
  background: linear-gradient(to left, transparent, var(--color-gold) 50%, var(--color-pink-primary) 100%);
}

.divider-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-icon 2s infinite ease-in-out;
  color: var(--color-gold);
}

@keyframes pulse-icon {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(251, 133, 0, 0.2)); }
  50% { transform: scale(1.15); filter: drop-shadow(0 0 8px rgba(255, 0, 110, 0.55)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(251, 133, 0, 0.2)); }
}

.welcome-msg p,
.welcome-msg span,
.welcome-msg div,
.welcome-msg li {
  font-weight: 600;
}

.welcome-msg strong,
.welcome-msg b,
.welcome-msg strong *,
.welcome-msg b * {
  font-weight: 700 !important;
}

.welcome-msg strong {
  color: var(--color-rose-gold);
}

.welcome-msg span strong,
.welcome-msg td strong,
.welcome-msg div strong {
  color: inherit;
}

.welcome-msg em,
.welcome-msg i {
  font-style: italic;
  font-weight: 600;
  color: inherit;
}

/* Align Quill editor styles to match the website style preview */
#settings-welcome-editor .ql-editor {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--color-text-dark);
}

#settings-welcome-editor .ql-editor p,
#settings-welcome-editor .ql-editor span,
#settings-welcome-editor .ql-editor div,
#settings-welcome-editor .ql-editor li {
  font-weight: 600;
}

#settings-welcome-editor .ql-editor strong,
#settings-welcome-editor .ql-editor b,
#settings-welcome-editor .ql-editor strong *,
#settings-welcome-editor .ql-editor b * {
  font-weight: 700 !important;
}

.personalized-greeting {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-blue-primary);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem 0 1rem;
}

.countdown-box {
  background: white;
  border: 1px solid rgba(197, 143, 150, 0.15);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  min-width: 70px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.countdown-box:hover {
  transform: translateY(-3px);
  border-color: var(--color-pink-light);
}

.countdown-val {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-rose-gold);
  line-height: 1.2;
}

.countdown-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

/* Event Details & Location Card */
.details-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-bottom: 2rem;
  text-align: center;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.details-card:hover {
  box-shadow: var(--shadow-lg);
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.detail-item {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .details-grid {
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    gap: 2rem;
  }
  .details-grid .detail-item {
    flex: 1;
  }
  .details-grid .detail-item:first-child {
    border-right: 1px dashed rgba(197, 143, 150, 0.35);
    padding-right: 2rem;
  }
}

.detail-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  display: inline-block;
  animation: float 4s ease-in-out infinite;
}

.detail-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
  color: var(--color-rose-gold);
}

.detail-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Add to Calendar & Maps Button */
.btn-group {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: white;
  color: var(--color-text-dark);
  border: 1px solid rgba(197, 143, 150, 0.4);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--color-bg-gradient);
  border-color: var(--color-pink-primary);
  transform: translateY(-1px);
}

.btn-contact-picker {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.04) 0%, rgba(255, 0, 110, 0.04) 100%);
  color: var(--color-blue-primary);
  border: 1.5px dashed rgba(0, 119, 182, 0.35);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-contact-picker:hover {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, rgba(255, 0, 110, 0.08) 100%);
  border-color: var(--color-pink-primary);
  color: var(--color-pink-primary);
  transform: translateY(-1px);
}

.btn-wa-share {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.04) 0%, rgba(0, 119, 182, 0.04) 100%);
  color: var(--color-green-primary);
  border: 1.5px dashed rgba(6, 214, 160, 0.45);
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-wa-share:hover {
  background: linear-gradient(135deg, rgba(6, 214, 160, 0.08) 0%, rgba(0, 119, 182, 0.08) 100%);
  border-color: #05b084;
  color: #05b084;
  transform: translateY(-1px);
}


/* RSVP Form Section */
.rsvp-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--color-text-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--color-pink-primary), var(--color-blue-primary));
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* RSVP Toggle Buttons */
.rsvp-toggle-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rsvp-toggle-btn {
  flex: 1;
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(197, 143, 150, 0.2);
  background: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.rsvp-toggle-btn .btn-emoji {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: var(--transition-fast);
}

.rsvp-toggle-btn span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.rsvp-toggle-btn.active-yes {
  border-color: var(--color-pink-primary);
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.08) 0%, white 100%);
  box-shadow: 0 8px 20px var(--color-pink-glow);
}
.rsvp-toggle-btn.active-yes span {
  color: var(--color-pink-primary);
}
.rsvp-toggle-btn.active-yes .btn-emoji {
  transform: scale(1.15);
}

.rsvp-toggle-btn.active-no {
  border-color: var(--color-blue-primary);
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.08) 0%, white 100%);
  box-shadow: 0 8px 20px var(--color-blue-glow);
}
.rsvp-toggle-btn.active-no span {
  color: var(--color-blue-primary);
}
.rsvp-toggle-btn.active-no .btn-emoji {
  transform: scale(1.15);
}

.rsvp-toggle-btn:hover:not(.active-yes):not(.active-no) {
  transform: translateY(-2px);
  border-color: var(--color-pink-light);
}

/* Dynamic RSVP Details */
.rsvp-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.rsvp-details.visible {
  max-height: 400px;
  opacity: 1;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

/* Custom Guest Counters */
.counter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 143, 150, 0.15);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}

.counter-info h4 {
  font-size: 1.05rem;
  color: var(--color-text-dark);
}
.counter-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(197, 143, 150, 0.3);
  background: white;
  color: var(--color-text-dark);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.counter-btn:hover:not(:disabled) {
  background: var(--color-bg-gradient);
  border-color: var(--color-pink-primary);
  color: var(--color-pink-primary);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-val {
  font-size: 1.2rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

/* General Form Elements */
.input-text, .textarea-msg {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(99, 102, 241, 0.2);
  background: white;
  color: var(--color-text-dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.input-text:focus, .textarea-msg:focus {
  outline: none;
  border-color: var(--color-pink-primary);
  box-shadow: 0 0 0 3px var(--color-pink-glow);
}

select.input-text {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234b5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* Primary RSVP Submit Button */
.btn-primary {
  width: 100%;
  padding: 1.1rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--color-pink-primary) 0%, var(--color-blue-primary) 50%, var(--color-green-primary) 100%);
  background-size: 200% auto;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(255, 0, 110, 0.25);
  transition: var(--transition-smooth);
}

.btn-primary:hover:not(:disabled) {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 0, 110, 0.35);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Status Notifications */
.form-status {
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  display: none;
}
.form-status.success {
  background-color: rgba(124, 203, 151, 0.15);
  color: #216d3a;
  border: 1px solid rgba(124, 203, 151, 0.3);
  display: block;
}
.form-status.error {
  background-color: rgba(232, 141, 156, 0.15);
  color: #a93246;
  border: 1px solid rgba(232, 141, 156, 0.3);
  display: block;
}

/* Confetti Overlay */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}

/* Admin Panel Styling */
.admin-login-card {
  max-width: 400px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(15px);
  text-align: center;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: white;
  color: #555;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  width: 100%;
  margin-top: 1.5rem;
}

.google-btn:hover {
  background: #fafafa;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.google-btn svg {
  width: 18px;
  height: 18px;
}

/* Admin Dashboard Layout */
.admin-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.btn-logout {
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  font-size: 0.8rem;
  cursor: pointer;
}

.btn-logout:hover {
  background: var(--color-pink-primary);
  color: white;
  border-color: var(--color-pink-primary);
}

/* Metrics Dashboard */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.metric-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.metric-val {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.metric-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

.metric-card.attending {
  border-left: 5px solid var(--color-pink-primary);
}
.metric-card.declined {
  border-left: 5px solid var(--color-blue-primary);
}
.metric-card.pending {
  border-left: 5px solid var(--color-gold);
}

/* Dashboard Actions */
.dashboard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.action-left {
  display: flex;
  gap: 0.5rem;
}

.search-input {
  padding: 0.6rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(0,0,0,0.1);
  min-width: 250px;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-blue-primary);
}

/* Guest Table Card */
.table-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.table-responsive {
  overflow-x: auto;
}

table.guest-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.guest-table th, .guest-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}

.guest-table th {
  background-color: #fcfcfc;
  font-weight: 600;
  color: var(--color-text-muted);
}

.guest-table tbody tr:hover {
  background-color: #fafbf9;
}

/* Status Badges */
.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-yes {
  background-color: rgba(124, 203, 151, 0.15);
  color: #216d3a;
}
.badge-no {
  background-color: rgba(123, 181, 219, 0.15);
  color: #1a5c88;
}
.badge-pending {
  background-color: rgba(207, 171, 98, 0.15);
  color: #8c671b;
}

/* Action Buttons */
.action-btn-group {
  display: flex;
  gap: 0.4rem;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-icon:hover {
  background: #f5f5f5;
}

.btn-icon.wa:hover {
  background-color: #25d366;
  color: white;
  border-color: #25d366;
}

.btn-icon.email:hover {
  background-color: #6096ba;
  color: white;
  border-color: #6096ba;
}

.btn-icon.delete:hover {
  background-color: #e88d9c;
  color: white;
  border-color: #e88d9c;
}

/* Modal Popup Window */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  width: 95%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

/* Event Config & Instructions Panel */
.config-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .config-layout {
    grid-template-columns: 1fr;
  }
}

.panel-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
}

.panel-card h3 {
  margin-bottom: 1.2rem;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

/* Utilities */
.text-center { text-align: center; }
.mr-1 { margin-right: 0.25rem; }
.mt-1 { margin-top: 1rem; }

/* Responsive adjustments */
@media (max-width: 500px) {
  .hero-card {
    padding: 2.5rem 1rem;
  }
  .title-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .title-row .avatar-container:first-of-type {
    order: 1;
  }
  .title-row .avatar-container:last-of-type {
    order: 2;
  }
  .title-row .title-text-group {
    order: 3;
    width: 100%;
    flex-shrink: 0;
  }
  .title-avatar {
    width: 85px;
    height: 85px;
    border-radius: 18px;
    border-width: 3px;
  }
  .avatar-container {
    gap: 0.25rem;
  }
  .avatar-caption {
    font-size: 1.0rem;
  }
  .event-title {
    font-size: clamp(1.4rem, 6.8vw, 2.1rem);
    line-height: 1.25;
    margin-top: 0.5rem;
  }
  .celebrant-name {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
  .rsvp-toggle-group {
    flex-direction: column;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Tab Navigation */
.tab-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(197, 143, 150, 0.25);
  width: 100%;
}

.tab-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition-fast);
}

.tab-btn:hover:not(.active) {
  color: var(--color-pink-primary);
  border-bottom-color: rgba(232, 141, 156, 0.35);
}

.tab-btn.active {
  color: var(--color-rose-gold);
  border-bottom-color: var(--color-rose-gold);
  font-weight: 700;
}

.tab-content {
  display: none;
}

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

/* Image Lightbox Modal */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  width: 320px;
  height: 320px;
  border-radius: 32px;
  object-fit: cover;
  border: 5px solid var(--color-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.85);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.lightbox-backdrop.open .lightbox-content {
  transform: scale(1);
}

@media (max-width: 500px) {
  .lightbox-content {
    width: 250px;
    height: 250px;
    border-width: 4px;
    border-radius: 24px;
  }
}

/* Curtain Reveal Theater Effect */
.curtain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  overflow: hidden;
  pointer-events: none;
}

.curtain-panel {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(135deg, #090d16 0%, #111827 50%, #090d16 100%);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
  pointer-events: auto;
}

.curtain-left {
  left: 0;
  box-shadow: 15px 0 50px rgba(0, 0, 0, 0.6);
  transform: translateX(0);
  border-right: 2px solid var(--color-gold);
}

.curtain-right {
  right: 0;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
  transform: translateX(0);
  border-left: 2px solid var(--color-gold);
}

/* Curtain parting states */
.curtain-overlay.open .curtain-left {
  transform: translateX(-100%);
  pointer-events: none;
}

.curtain-overlay.open .curtain-right {
  transform: translateX(100%);
  pointer-events: none;
}

.curtain-overlay.open {
  pointer-events: none;
}

/* Center Content Badge styling */
.curtain-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: auto;
}

.curtain-overlay.open-content .curtain-content {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  pointer-events: none;
}

.curtain-badge {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  width: 290px;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(251, 133, 0, 0.25);
  animation: badgeGlow 3s infinite alternate;
}

@keyframes badgeGlow {
  0% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 133, 0, 0.2), inset 0 0 15px rgba(251, 133, 0, 0.1);
    border-color: var(--color-gold);
  }
  100% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 0, 110, 0.45), inset 0 0 25px rgba(255, 0, 110, 0.2);
    border-color: var(--color-pink-primary);
  }
}

.badge-sparkle {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  animation: float 2.5s ease-in-out infinite;
}

.badge-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  background: linear-gradient(45deg, #ffffff, #ffe3d1, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  line-height: 1.2;
  max-width: 240px;
}

.badge-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 0.8rem 0;
}

.badge-subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
  line-height: 1.4;
  max-width: 230px;
}

/* Responsive adjustment for curtains */
@media (max-width: 480px) {
  .curtain-badge {
    width: 220px;
    height: 220px;
    padding: 1.2rem;
  }
  .badge-title {
    font-size: 1.5rem;
    max-width: 170px;
  }
  .badge-subtitle {
    font-size: 0.7rem;
    max-width: 150px;
  }
}

/* Desktop Two-Column Layout to reduce scrolling */
@media (min-width: 992px) {
  .container {
    max-width: 1150px;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    grid-template-rows: min-content 1fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem 2rem;
  }

  .hero-card {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-bottom: 0;
    padding: 4rem 2.5rem;
  }

  .title-avatar {
    width: 95px;
    height: 95px;
    border-radius: 20px;
  }

  .title-row {
    padding: 0 0.5rem;
  }

  .details-card {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    padding: 2.5rem 2rem;
  }

  .rsvp-card {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0;
    padding: 2.5rem 2rem;
  }
}

/*
   ==========================================================================
   Mehendi Redesign Skin: Dark Twilight Emerald & Marigold Gold
   ==========================================================================
*/

:root {
  --color-bg-gradient: linear-gradient(135deg, #03150b 0%, #082615 50%, #020c06 100%);
  --color-card-bg: rgba(10, 42, 23, 0.7);
  --color-card-border: rgba(212, 175, 55, 0.25);
  --color-text-dark: #f8fafc;
  --color-text-muted: #cbd5e1;
  --color-gold: #ffb703;
  --color-rose-gold: #ffb703;
}

/* Hanging String Lights */
.string-lights {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  list-style: none;
  border-bottom: 2px solid #222;
  pointer-events: none;
}
.string-lights li {
  position: relative;
  width: 10px;
  height: 24px;
  background: #fff;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  box-shadow: 0px 2px 12px 3px rgba(255, 223, 0, 0.5);
  animation: pulse-glow 1.5s infinite alternate;
}
.string-lights li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 8px;
  background: #222;
  border-radius: 2px;
  top: -5px;
  left: -1px;
}
.string-lights li:nth-child(2n) {
  background: #ffd700;
  box-shadow: 0px 2px 12px 3px rgba(255, 215, 0, 0.6);
  animation-duration: 1.8s;
  animation-delay: 0.2s;
}
.string-lights li:nth-child(3n) {
  background: #ff7b00;
  box-shadow: 0px 2px 12px 3px rgba(255, 123, 0, 0.6);
  animation-duration: 2.1s;
  animation-delay: 0.5s;
}
.string-lights li:nth-child(4n) {
  background: #4caf50;
  box-shadow: 0px 2px 12px 3px rgba(76, 175, 80, 0.6);
  animation-duration: 1.5s;
  animation-delay: 0.1s;
}
@keyframes pulse-glow {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Henna Hero Arched Image */
.henna-hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 2rem;
}
.gold-arch-frame {
  width: 190px;
  height: 250px;
  border-radius: 120px 120px 0 0;
  border: 3px solid #ffb703;
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.4), inset 0 0 20px rgba(255, 183, 3, 0.2);
  overflow: hidden;
  background: rgba(10, 45, 25, 0.6);
  padding: 8px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gold-arch-frame:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 183, 3, 0.6), inset 0 0 25px rgba(255, 183, 3, 0.3);
}
.henna-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 110px 110px 0 0;
}

/* Event Title Styling overrides */
.event-title-container {
  margin-top: 1rem;
}
.event-title {
  font-size: 2.8rem !important;
  color: #ffb703 !important;
  text-shadow: 0 2px 10px rgba(255, 183, 3, 0.3) !important;
}
.celebrant-name {
  font-size: 1.8rem !important;
  color: #f8fafc !important;
}

/* Glassmorphism Overrides */
.hero-card, .details-card, .rsvp-card, .admin-login-card {
  background: rgba(10, 42, 23, 0.75) !important;
  border: 1px solid rgba(255, 183, 3, 0.25) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Form Controls */
.input-text, .textarea-msg {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 183, 3, 0.25) !important;
  color: #ffffff !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}
.input-text::placeholder, .textarea-msg::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
.input-text:focus, .textarea-msg:focus {
  border-color: #ffb703 !important;
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.2) !important;
}
select.input-text {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffb703' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
}
select.input-text option {
  background: #082615;
  color: #ffffff;
}

/* Labels and text */
.form-label {
  color: #e2e8f0 !important;
}
.counter-row {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 183, 3, 0.2) !important;
  box-shadow: none !important;
}
.counter-val {
  color: #ffffff !important;
}
.counter-btn {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 183, 3, 0.3) !important;
  color: #ffb703 !important;
}
.counter-btn:hover:not(:disabled) {
  background: rgba(255, 183, 3, 0.2) !important;
}
.counter-btn:disabled {
  opacity: 0.3 !important;
}

/* RSVP Toggle Buttons */
.rsvp-toggle-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 183, 3, 0.2) !important;
  color: #cbd5e1 !important;
}
.rsvp-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #ffb703 !important;
}
.rsvp-toggle-btn.active {
  background: rgba(27, 94, 32, 0.7) !important;
  border-color: #4caf50 !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.4) !important;
}
#rsvp-no-btn.active {
  background: rgba(185, 28, 28, 0.7) !important;
  border-color: #ef5350 !important;
  box-shadow: 0 0 15px rgba(239, 83, 80, 0.4) !important;
}

/* Secondary Actions */
.btn-secondary {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 183, 3, 0.3) !important;
  color: #ffb703 !important;
  transition: all 0.3s ease !important;
}
.btn-secondary:hover {
  background: rgba(255, 183, 3, 0.15) !important;
  box-shadow: 0 5px 15px rgba(255, 183, 3, 0.25) !important;
}

/* Status Notifications */
.form-status.success {
  background-color: rgba(76, 175, 80, 0.15) !important;
  color: #81c784 !important;
  border: 1px solid rgba(76, 175, 80, 0.3) !important;
}
.form-status.error {
  background-color: rgba(239, 83, 80, 0.15) !important;
  color: #e57373 !important;
  border: 1px solid rgba(239, 83, 80, 0.3) !important;
}

/* Details and countdown overrides */
.detail-icon {
  background: rgba(255, 183, 3, 0.1) !important;
  color: #ffb703 !important;
  box-shadow: 0 0 10px rgba(255, 183, 3, 0.15) !important;
}
.countdown-box {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 183, 3, 0.15) !important;
}
.countdown-val {
  color: #ffb703 !important;
  text-shadow: 0 0 10px rgba(255, 183, 3, 0.4) !important;
}
.countdown-lbl {
  color: #cbd5e1 !important;
}

/* Section Divider */
.section-title::after {
  background: linear-gradient(to right, #1b5e20, #ffb703) !important;
}

/* Curtain reveal styles */
.curtain-overlay {
  background: #03150b !important;
}
.curtain-panel {
  background: linear-gradient(135deg, #03150b 0%, #082615 50%, #03150b 100%) !important;
  border-color: rgba(255, 183, 3, 0.25) !important;
  overflow: hidden !important;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
}
.curtain-content {
  top: 22% !important;
}
.curtain-badge {
  background: rgba(7, 30, 16, 0.9) !important;
  border: 2px solid #ffb703 !important;
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.4) !important;
}
.badge-title, .badge-subtitle {
  color: #ffffff !important;
}

/* Hands opening animation styles */
.curtain-hand {
  position: absolute;
  top: 50% !important;
  width: 380px !important;
  height: 380px !important;
  object-fit: contain !important;
  pointer-events: none !important;
  z-index: 10 !important;
}
.left-hand {
  right: -190px !important;
  transform: translateY(-50%) !important;
  clip-path: inset(0 50% 0 0) !important;
}
.right-hand {
  left: -190px !important;
  transform: translateY(-50%) !important;
  clip-path: inset(0 0 0 50%) !important;
}

/* Admin Dashboard Specific Enhancements */
.admin-container {
  color: #ffffff !important;
}
.admin-header {
  border-bottom: 1px solid rgba(255, 183, 3, 0.2) !important;
}
.btn-logout {
  color: #ffb703 !important;
}
.tab-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #cbd5e1 !important;
  border: 1px solid rgba(255, 183, 3, 0.15) !important;
}
.tab-btn.active {
  background: rgba(27, 94, 32, 0.5) !important;
  color: #ffb703 !important;
  border-color: #ffb703 !important;
}
.metric-card {
  background: rgba(10, 42, 23, 0.6) !important;
  border: 1px solid rgba(255, 183, 3, 0.15) !important;
  color: #ffffff !important;
}
.metric-val {
  color: #ffb703 !important;
}
.search-input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 183, 3, 0.2) !important;
  color: #ffffff !important;
}
.search-input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}
/* Table elements */
th {
  background: rgba(13, 40, 24, 0.8) !important;
  color: #ffb703 !important;
  border-bottom: 2px solid rgba(255, 183, 3, 0.2) !important;
}
td {
  border-bottom: 1px solid rgba(255, 183, 3, 0.1) !important;
  color: #cbd5e1 !important;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.03) !important;
}
.btn-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 183, 3, 0.2) !important;
}
.btn-icon:hover {
  background: rgba(255, 183, 3, 0.15) !important;
  border-color: #ffb703 !important;
}
.modal-content {
  background: rgba(8, 30, 16, 0.95) !important;
  border: 2px solid #ffb703 !important;
  box-shadow: 0 0 35px rgba(255, 183, 3, 0.3) !important;
  color: #ffffff !important;
}
.modal-header {
  border-bottom: 1px solid rgba(255, 183, 3, 0.2) !important;
}
.modal-close-btn {
  color: #cbd5e1 !important;
}
.modal-close-btn:hover {
  color: #ffb703 !important;
}

/* Quill Rich Text Editor white background & dark text overrides for Admin settings */
.ql-toolbar.ql-snow {
  background: #ffffff !important;
  border-color: rgba(255, 183, 3, 0.3) !important;
  border-top-left-radius: var(--radius-md) !important;
  border-top-right-radius: var(--radius-md) !important;
}
.ql-container.ql-snow {
  background: #ffffff !important;
  border-color: rgba(255, 183, 3, 0.3) !important;
  border-bottom-left-radius: var(--radius-md) !important;
  border-bottom-right-radius: var(--radius-md) !important;
}
#settings-welcome-editor .ql-editor {
  color: #1e293b !important;
}



