/* style.css - RSVP Landing Page Design System */

:root {
  /* Color Palette */
  --color-primary-orange: #E35336;
  --color-primary-indigo: #5336E3;
  --color-primary-mint: #BDFEC2;
  --color-primary-brown: #3D1007;
  --color-white: #FFFFFF;
  
  /* Fonts */
  --font-heading: 'Gluten', cursive;
  --font-display: 'Handjet', monospace;
  
  /* Borders & Shadows (Neo-brutalist style matching invite) */
  --border-thick: 4px solid var(--color-primary-indigo);
  --border-thin: 2px solid var(--color-primary-indigo);
  --shadow-neo: 8px 8px 0px 0px var(--color-primary-mint);
  --shadow-neo-hover: 4px 4px 0px 0px var(--color-primary-mint);
  --shadow-neo-active: 1px 1px 0px 0px var(--color-primary-mint);
  --radius-card: 16px;
  --radius-input: 8px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--color-primary-orange);
  color: var(--color-primary-brown);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100vw;
  position: relative;
  min-height: 100vh;
  padding: 40px 20px 80px 20px;
}

html {
  overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--color-primary-orange);
}
::-webkit-scrollbar-thumb {
  background-color: var(--color-primary-indigo);
  border-radius: 6px;
  border: 3px solid var(--color-primary-orange);
}

/* Background Decorative Elements */
.bg-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}


/* Bottom Waves */
.bottom-wave {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  line-height: 0;
}

/* Greek Key Border Line (Matches Invite details) */
.greek-key-border {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 32px;
  background-image: url('assets/pattern.svg');
  background-repeat: repeat-x;
  background-size: auto 32px;
  pointer-events: none;
  z-index: 0;
}

/* Main Container */
.main-container {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Floating SVGs */
.floating-svg {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}

/* Taco Styling & Animation */
.svg-taco {
  top: 80px;
  right: 5%;
  width: 130px;
  height: 130px;
  animation: float-taco 6s ease-in-out infinite;
}

/* SVG Colors override (Keep only line art, transparent backgrounds) */
.floating-svg svg,
.star-svg-container svg,
.header-mascots-svg svg {
  width: 100%;
  height: 100%;
}

/* 1. Set all paths inside floating and header SVGs to transparent by default */
.floating-svg path,
.header-mascots-svg path {
  fill: var(--color-primary-mint) !important;
  /* stroke: none !important; */
}

/* 2. Target only the black outline paths (fill="rgb(0,0,0)") */
/* For the floating taco, draw lines in mint green */
.floating-svg path[fill="rgb(0,0,0)"],
.floating-svg g[fill="rgb(0,0,0)"] path {
  fill: var(--color-primary-mint) !important;
}

/* For the header mascots, draw outlines in dark indigo */
.header-mascots-svg path[fill="rgb(0,0,0)"],
.header-mascots-svg g[fill="rgb(0,0,0)"] path {
  fill: var(--color-primary-indigo) !important;
  transition: fill 0.2s ease;
}

/* Header Mascots Container */
.header-mascots-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.mascots-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 18px;
  z-index: 2;
  width: 100%;
  max-width: 640px;
}

.header-mascots-svg {
  width: 130px;
  height: 130px;
  z-index: 2;
}

/* Flip the mariachi so it faces inward toward the title */
#svg-sereque-mariachi svg { transform: scaleX(-1) !important; }

/* Mascots are static (idle animations removed) */

/* Wavy ground under mascots */
.mascots-ground-wave {
  width: 100%;
  max-width: 640px;
  height: 24px;
  background-image: url('assets/wave.svg');
  background-repeat: repeat-x;
  background-size: auto 24px;
  margin-top: -16px; /* overlap agouti feet */
  z-index: 1;
  filter: drop-shadow(2px 2px 0px var(--color-primary-indigo));
  opacity: 0.85;
}

/* Typography utilities */
.text-indigo { color: var(--color-primary-indigo); }
.text-mint { color: var(--color-primary-mint); }
.text-brown { color: var(--color-primary-brown); }

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  position: relative;
  outline: none;
  width: 100%;
}

.btn-primary {
  background-color: var(--color-primary-indigo);
  color: var(--color-primary-mint);
  border: var(--color-primary-mint);
  /* box-shadow: var(--shadow-neo); */
}

.btn-primary:hover {
  transform: translate(4px, 4px);
  /* box-shadow: var(--shadow-neo-hover); */
}

.btn-primary:active {
  transform: translate(7px, 7px);
  /* box-shadow: var(--shadow-neo-active); */
}

.btn-secondary {
  background-color: var(--color-primary-mint);
  color: var(--color-primary-brown);
  border: var(--border-thick);
  /* box-shadow: var(--shadow-neo); */
}

.btn-secondary:hover {
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-neo-hover);
}

.btn-secondary:active {
  transform: translate(7px, 7px);
  box-shadow: var(--shadow-neo-active);
}

.btn-danger {
  background-color: #ff6b6b;
  color: var(--color-primary-brown);
  border: var(--border-thick);
  box-shadow: var(--shadow-neo);
}
.btn-danger:hover {
  transform: translate(4px, 4px);
  box-shadow: var(--shadow-neo-hover);
}

.btn-subtext {
  font-size: 16px;
  opacity: 0.8;
  margin-top: 2px;
  font-weight: 400;
}

/* Calendar Button icon adjustment */
.btn-calendar {
  flex-direction: row;
  gap: 10px;
}
.calendar-icon {
  width: 24px;
  height: 24px;
}

/* Hero Header (sits directly on the page background) */
.hero-card {
  padding: 30px;
  margin-bottom: 40px;
  position: relative;
}

.header-flank-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Elote (left) & Mariachi (right) mascots flanking the title */
.header-flank {
  flex: 0 0 auto;
  width: 210px;
  height: 210px;
}

.hero-header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}

.hero-title {
  position: relative;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-primary-mint);
  text-align: center;
}

.cumplen-text {
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Star badge with 30 (Matches Invite Top Right) */
.star-badge {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(10deg);
  transition: transform 0.3s ease;
}

.star-badge:hover {
  transform: rotate(20deg) scale(1.1);
}

.star-svg-container {
  width: 30rem;
  height: 30rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -6;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: star-zoom 2.5s ease-in-out infinite;
}

/* Continuous zoom in/out of the star (keeps centering transform) */
@keyframes star-zoom {
  0%, 100% { transform: translate(-50%, -50%) rotate(-10deg) scale(1); }
  50%      { transform: translate(-50%, -50%) rotate(-10deg) scale(1.15); }
}

.star-svg-container svg {
  width: 100%;
  height: 100%;
}

.star-number {
  position: relative;
  font-family: var(--font-heading);
  font-size: 10rem;
  font-weight: 800;
  color: var(--color-primary-mint);
  /* margin-top: 5px; */
  z-index: 1;
  pointer-events: none;
}

/* Date brush banner */
.date-banner-wrap {
  text-align: center;
}

.date-banner {
  background-image: url('assets/brush.svg');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 18px 45px 22px 45px;
  display: inline-block;
  transform: rotate(-2deg);
}

.date-banner h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 26px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 0px var(--color-white);
}

.countdown-container {
  display: inline-flex;
  background-color: var(--color-white);
  /* border: var(--border-thick); */
  border-radius: 12px;
  padding: 15px 30px;
  gap: 12px;
  align-items: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  min-width: 60px;
}

.countdown-num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary-indigo);
  letter-spacing: 1px;
}

.countdown-label {
  font-size: 14px;
  /* text-transform: uppercase; */
  color: var(--color-primary-brown);
  opacity: 0.7;
  margin-top: 4px;
}

.countdown-divider {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-primary-orange);
  margin-top: -20px;
  animation: blink 1s step-end infinite;
}

/* Content Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Cards shared */
.details-card, .rsvp-card {
  background-color: var(--color-white);
  /* border: var(--border-thick); */
  border-radius: var(--radius-card);
  overflow: hidden;
}

.details-header, .rsvp-header {
  background-color: var(--color-primary-indigo);
  /* border-bottom: var(--border-thick); */
  padding: 18px 24px;
  text-align: center;
}

.details-header h3, .rsvp-header h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: white;
}

.dutch-subtext {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: -2px;
  color: var(--color-primary-mint);
  letter-spacing: 2px;
}

.details-body {
  padding: 30px;
}

.details-subtitle {
  font-size: 32px;
  color: var(--color-primary-indigo);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.address-text {
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* Map Card */
.map-card {
  background-color: #e5e5f7;
  opacity: 0.9;
  background-image: radial-gradient(var(--color-primary-orange) 1.5px, transparent 1.5px), radial-gradient(var(--color-primary-orange) 1.5px, #e5e5f7 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  border: var(--border-thick);
  border-radius: 12px;
  height: 160px;
  margin-bottom: 25px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 4px 4px 0px var(--color-primary-mint);
}

.map-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-primary-mint);
}

.map-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  border: var(--border-thin);
  border-radius: 20px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 2px 2px 0px var(--color-primary-indigo);
}

.map-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary-orange);
}

/* RSVP Form styling */
.rsvp-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary-indigo);
  display: inline-flex;
}

.field-desc {
  font-size: 15px;
  opacity: 0.8;
  margin-top: -5px;
}

/* Input Fields styling */
.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form select,
.rsvp-form textarea {
  width: 100%;
  font-family: var(--font-display);
  font-size: 22px;
  padding: 12px 16px;
  border: var(--border-thick);
  border-radius: var(--radius-input);
  background-color: var(--color-white);
  color: var(--color-primary-brown);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rsvp-form input[type="text"]:focus,
.rsvp-form input[type="email"]:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
  border-color: var(--color-primary-indigo);
  box-shadow: 0 0 0 3px rgba(83, 54, 227, 0.15);
}

.rsvp-form textarea {
  resize: vertical;
}

/* Form validation styling */
.error-msg {
  display: none;
  color: #ff3333;
  font-size: 16px;
  font-weight: 500;
}

/* Select wrapper styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '▼';
  font-size: 14px;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.rsvp-form select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

/* Custom Radio & Checkbox Cards */
.attendance-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.radio-card, .checkbox-card {
  cursor: pointer;
  display: block;
  position: relative;
}

.radio-card input, .checkbox-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-content, .checkbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: var(--border-thin);
  border-radius: var(--radius-input);
  padding: 14px;
  text-align: center;
  background-color: var(--color-white);
  transition: all 0.2s ease;
  box-shadow: 3px 3px 0px var(--color-primary-indigo);
}

.radio-card input:checked + .radio-content,
.checkbox-card input:checked + .checkbox-content {
  background-color: var(--color-primary-mint);
  border-color: var(--color-primary-indigo);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--color-primary-brown);
  font-weight: 600;
}

.radio-emoji {
  font-size: 26px;
  margin-bottom: 4px;
}

.radio-text {
  font-size: 18px;
}

/* Checkbox Grid layout */
.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.checkbox-content {
  flex-direction: row;
  gap: 6px;
  font-size: 18px;
  padding: 10px;
  justify-content: flex-start;
}

/* User Valid styling */
.rsvp-form input:not(:placeholder-shown):user-valid,
.rsvp-form textarea:not(:placeholder-shown):user-valid {
  border-color: #2ec4b6;
}

.rsvp-form input:user-invalid,
.rsvp-form textarea:user-invalid {
  border-color: #e71d36;
}

/* dialog / Modals shared container */
.custom-modal {
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-neo);
  background-color: var(--color-white);
  margin: auto;
  max-width: 500px;
  width: 90%;
  padding: 0;
  overflow: hidden;
  outline: none;
}

/* 1. Define top layer transition */
.custom-modal {
  opacity: 0;
  transform: scale(0.9);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-behavior: allow-discrete;
}

/* 2. Define top layer open state */
.custom-modal[open] {
  opacity: 1;
  transform: scale(1);
  
  /* Starting style for entering top layer */
  @starting-style {
    opacity: 0;
    transform: scale(0.9);
  }
}

/* 3. Backdrop styling */
.custom-modal::backdrop {
  background-color: rgba(61, 16, 7, 0);
  transition:
    display 0.3s allow-discrete,
    overlay 0.3s allow-discrete,
    background-color 0.3s ease-out;
}

.custom-modal[open]::backdrop {
  background-color: rgba(61, 16, 7, 0.7);

  @starting-style {
    background-color: rgba(61, 16, 7, 0);
  }
}

.modal-content {
  padding: 30px;
  text-align: center;
  position: relative;
}

.modal-close-x {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1;
  color: var(--color-primary-brown);
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close-x:hover {
  background: rgba(61, 16, 7, 0.1);
  transform: scale(1.1);
}

.modal-emoji {
  font-size: 48px;
  margin-bottom: 15px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-primary-indigo);
  margin-bottom: 12px;
}

.modal-text {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.modal-details {
  background-color: rgba(189, 254, 194, 0.25);
  border: 2px dashed var(--color-primary-indigo);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  font-size: 18px;
  text-align: left;
}

/* Hidden admin trigger */
.admin-hidden-btn {
  background: transparent;
  border: none;
  width: 30px;
  height: 30px;
  cursor: default;
  position: absolute;
  bottom: 0;
  right: 0;
  outline: none;
}

/* Footer Styling */
.main-footer {
  text-align: center;
  color: var(--color-white);
  font-size: 18px;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

/* Admin Dashboard Specific */
.admin-modal {
  max-width: 800px;
  width: 95%;
}

.admin-modal .modal-header {
  background-color: var(--color-primary-mint);
  border-bottom: var(--border-thick);
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-close-admin {
  background: transparent;
  border: none;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary-brown);
  cursor: pointer;
  line-height: 1;
}

.admin-content {
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-height: 75vh;
  overflow-y: auto;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  border: var(--border-thin);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  background-color: #fafafa;
  box-shadow: 3px 3px 0px var(--color-primary-brown);
}

.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary-indigo);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
}

.admin-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-subtitle {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary-brown);
  border-bottom: 2px dashed rgba(61, 16, 7, 0.2);
  padding-bottom: 6px;
}

.diet-chart-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.diet-item {
  border: 1px solid var(--color-primary-indigo);
  background-color: rgba(83, 54, 227, 0.05);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 16px;
}

/* Admin Table list */
.table-container {
  width: 100%;
  overflow-x: auto;
  border: var(--border-thin);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  text-align: left;
  background-color: var(--color-white);
}

.admin-table th, .admin-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.admin-table th {
  background-color: #fafafa;
  border-bottom: var(--border-thin);
  font-weight: 600;
}

.admin-table tbody tr:hover {
  background-color: rgba(189, 254, 194, 0.1);
}

.btn-delete-row {
  background: none;
  border: none;
  color: #ff3333;
  cursor: pointer;
  font-size: 16px;
  text-decoration: underline;
  padding: 0;
}

.admin-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* Animations Keyframes */
@keyframes blink {
  50% { opacity: 0; }
}

@keyframes float-taco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(8deg); }
}

@keyframes mascot-sway {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}

@keyframes mascot-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-svg, .header-mascots-svg, .star-svg-container {
    animation: none !important;
  }
  
  .custom-modal {
    transform: none !important;
    transition-duration: 0.1s;
  }
  @starting-style {
    .custom-modal[open] {
      transform: none !important;
    }
  }
}

/* Media Queries (Mobile Responsiveness) */
@media (max-width: 768px) {
  body {
    padding: 20px 10px 60px 10px;
  }
  
  .hero-card {
    padding: 20px 15px;
    margin-bottom: 25px;
  }
  
  .hero-header-wrap {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .header-flank-row {
    position: relative;
    gap: 0;
  }

  /* Big mascots: bleed off the side edges, layered over the star,
     so they can be large without squeezing the title column. */
  .header-flank.header-mascots-svg {
    position: absolute;
    top: 62%;
    transform: translateY(-50%);
    width: 55vw;
    height: 55vw;
    max-width: none;
    max-height: none;
    z-index: 3;
    pointer-events: none;
  }

  #svg-sereque-elot {
    left: -24vw;
  }

  #svg-sereque-mariachi {
    right: -24vw;
  }

  .hero-header-wrap {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }

  .hero-title-box {
    text-align: center;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .star-badge {
    width: 100%;
    height: 100%;
  }

  .header-mascots-svg {
    width: 78px;
    height: 78px;
  }

  .mascots-row {
    gap: 8px;
  }
  
  .star-number {
    font-size: 10rem;
  }
  
  .date-banner h2 {
    font-size: 20px;
  }
  
  .countdown-container {
    padding: 10px 15px;
    gap: 6px;
  }
  
  .countdown-num {
    font-size: 32px;
  }
  
  .countdown-item {
    min-width: 45px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .svg-taco {
    width: 80px;
    height: 80px;
    top: 50px;
    right: 2%;
  }
  
  .svg-mariachi {
    width: 100px;
    height: 100px;
    top: 600px;
    left: 2%;
  }
  
  .sereque-elot-svg {
    width: 150px;
    height: 150px;
  }
  
  .sereque-bubble {
    font-size: 16px;
    max-width: 180px;
    padding: 8px 12px;
  }
  
  .admin-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .admin-actions {
    flex-direction: column;
  }
}
