/* =============================================================================
   CSS Reset & Base Styles
   ============================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Ella Rises Colors */
  --ella-pink-light: #FEDAD4;
  --ella-pink-medium: #FCC8D0;
  --ella-pink-dark: #eaccca;
  --ella-blue-light: #dbe8ef;
  --ella-blue-medium: #7FAFC3;
  --ella-blue-dark: #5c8ea3;
  --ella-orange: #F5A962;
  --ella-coral: #f18d8d;
  
  /* Legacy Colors (keeping for compatibility) */
  --primary-color: #7FAFC3;
  --primary-dark: #5c8ea3;
  --secondary-color: #F5A962;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #f8f9fa;
  --white: #fff;
  --border-color: #ddd;
  --error-color: #e74c3c;
  --success-color: #27ae60;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Typography */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-hero: 3rem;

  /* Border radius */
  --border-radius: 4px;
  --border-radius-lg: 8px;
  --border-radius-xl: 20px;
  --border-radius-full: 50%;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Container */
  --container-max-width: 1200px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =============================================================================
   Layout
   ============================================================================= */

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--spacing-lg);
  flex: 1;
}

.full-width {
  width: 100%;
  flex: 1;
}

/* =============================================================================
   Header
   ============================================================================= */

.ella-header {
  width: 100%;
  background-color: #FEDAD4; /* top lighter pink */
}

.top-bar {
  width: 100%;
  height: 40px;
  background-color: #eaccca; /* darker pink strip under top */
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button-row {
  display: flex;
  align-items: center;
  width: 100%;
}

.ella-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  padding: 4px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.ella-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ella-nav {
  display: flex;
  flex: 1;
}

.header-controls {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.header-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.header-buttons-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-buttons-row.admin-row {
  justify-content: flex-end;
}

.auth-btn {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid #333;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.auth-btn:hover {
  background-color: #555;
}

.admin-btn {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 2px solid var(--ella-orange);
  background-color: var(--ella-orange);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.admin-btn:hover {
  background-color: #e28f49;
  border-color: #e28f49;
}

.ella-nav-list {
  list-style: none;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  gap: 0.25rem;
  background: white;
  border-radius: 30px;
  padding: 0.25rem 0.5rem;

  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.ella-nav-list li {
  margin: 0;
  flex: 1;
  display: flex;
}

.ella-nav-list a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;

  font-weight: 600;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;

  transition: background 0.2s ease, color 0.2s ease;
}

.ella-nav-list a:hover {
  background: #dbe8ef;
}

.ella-nav-list a.active {
  background: #5c8ea3; /* blueish */
  color: white;
}

.donate-btn {
  background: #7FAFC3;
  color: white;
  padding: 0.45rem 1.4rem;
  border-radius: 20px;

  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;

  box-shadow: 0 2px 4px rgba(0,0,0,0.2);

  transition: background 0.2s ease;
}

.donate-btn:hover {
  background: #6a9ab1;
}

.logo {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* =============================================================================
   Footer
   ============================================================================= */

.footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: var(--spacing-lg);
  text-align: center;
  margin-top: auto;
}

.footer-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.ella-footer {
  background: var(--ella-blue-light);
  padding: 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.social-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--text-color);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-bar a:hover {
  background: var(--ella-blue-dark);
  transform: translateY(-2px);
}

.footer-copyright {
  color: var(--text-color);
  font-size: 0.9rem;
}

/* =============================================================================
   Hero Section
   ============================================================================= */

.hero {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-lg);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: var(--border-radius-lg);
  margin-bottom: var(--spacing-xl);
}

.hero h1 {
  font-size: var(--font-size-hero);
  margin-bottom: var(--spacing-md);
}

.hero p {
  font-size: var(--font-size-lg);
  opacity: 0.9;
}

/* =============================================================================
   Ella Rises Hero Section
   ============================================================================= */

.ella-hero {
  background: var(--ella-pink-light);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.hero-welcome {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ella-blue-dark);
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.milestones-hero {
  background: var(--ella-blue-light);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.milestones-intro {
  max-width: 700px;
  margin: 0.5rem auto 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.milestones-admin,
.milestones-participant {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.milestones-search {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.milestones-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
}

.milestones-search button {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--ella-blue-medium);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.milestones-search button:hover {
  background: var(--ella-blue-dark);
}

.milestones-table-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}

.milestones-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.post-survey-table-view.participant-view th:nth-child(1),
.post-survey-table-view.participant-view td:nth-child(1) {
  width: 35%;
}

.post-survey-table-view.participant-view th:nth-child(2),
.post-survey-table-view.participant-view td:nth-child(2) {
  width: 20%;
}

.post-survey-table-view.participant-view th:nth-child(3),
.post-survey-table-view.participant-view td:nth-child(3) {
  width: 20%;
}

.post-survey-table-view.participant-view th:nth-child(4),
.post-survey-table-view.participant-view td:nth-child(4) {
  width: 25%;
}
.milestones-table.admin-table th:nth-child(1),
.milestones-table.admin-table td:nth-child(1) {
  width: 25%;
}

.milestones-table.admin-table th:nth-child(2),
.milestones-table.admin-table td:nth-child(2) {
  width: 50%;
}

.milestones-table.admin-table th:nth-child(3),
.milestones-table.admin-table td:nth-child(3) {
  width: 25%;
}

.participant-table {
  min-width: 0;
}

.milestones-table th,
.milestones-table td {
  padding: 0.75rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.milestones-table th {
  background: var(--ella-pink-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.milestones-table tbody tr:hover {
  background: var(--ella-blue-light);
}

.table-action {
  padding: 0.35rem 1rem;
  border-radius: 999px;
  border: none;
  background: var(--ella-blue-medium);
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}

.table-action:hover {
  background: var(--ella-blue-dark);
  color: var(--white);
}

.survey-form-readonly .survey-question {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.survey-form-readonly label {
  display: block;
  font-weight: 600;
}

.survey-form-readonly select,
.survey-form-readonly textarea {
  width: 100%;
  max-width: 360px;
}

.survey-form .table-action {
  align-self: flex-start;
  padding: 0.6rem 1.75rem;
  font-size: 1rem;
}

.table-actions {
  display: inline-flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.table-actions.stacked {
  flex-direction: column;
  align-items: stretch;
}

.table-actions.stacked form {
  width: 100%;
}

.table-actions.stacked .table-action {
  width: 100%;
}

.milestones-table .milestone-title-input {
  width: 100%;
  padding: 0.4rem 0.6rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.table-actions.milestone-actions {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
}

.table-actions.milestone-actions form {
  width: auto;
}

.table-actions.milestone-actions .table-action {
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  border-radius: 6px;
  background: var(--ella-blue-light);
  color: var(--ella-blue-dark);
  border: 1px solid var(--ella-blue-medium);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.table-actions.milestone-actions .table-action.secondary {
  background: var(--ella-orange);
  border-color: var(--ella-orange);
  color: var(--white);
}

.table-actions.milestone-actions .table-action.danger {
  background: transparent;
  border-color: #d9534f;
  color: #d9534f;
}

.table-actions.milestone-actions .table-action:hover {
  background: var(--ella-blue-medium);
  color: var(--white);
  border-color: var(--ella-blue-dark);
}

.table-actions.milestone-actions .table-action.secondary:hover {
  background: #e28f49;
  border-color: #e28f49;
}

.table-actions.milestone-actions .table-action.danger:hover {
  background: #fce6e5;
}

.table-action.secondary {
  background: var(--ella-orange);
}

.table-action.secondary:hover {
  background: #e28f49;
}

.table-action.danger {
  background: #d9534f;
}

.table-action.danger:hover {
  background: #c14440;
}

.hero-logo-band {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-logo-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.centered-logo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-logo-slider {
  margin-bottom: 2rem;
}

.slider-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.slider-image-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.slider-image-wrapper:hover {
  transform: scale(1.05);
}

.slider-image-wrapper.logo-circle {
  width: 180px;
  height: 180px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-circle .slider-img {
  object-fit: contain;
}

.hero-mission {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 2rem;
  border-radius: var(--border-radius-xl);
}

.hero-decorative {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
}

.wave-bottom {
  width: 100%;
  height: 100%;
}

/* =============================================================================
   Enrollment CTA Section
   ============================================================================= */

.enrollment-cta {
  background: var(--white);
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.enrollment-cta.secondary {
  background: linear-gradient(135deg, var(--ella-pink-medium), var(--ella-pink-light));
}

.cta-inner h2 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.programs-section .cta-inner {
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--text-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--ella-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =============================================================================
   Impact Section
   ============================================================================= */

.impact-section {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.impact-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.impact-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 4rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.impact-overlay h3 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  max-width: 400px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.impact-donate-btn {
  background: var(--text-color);
  color: var(--white);
  padding: 0.6rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.impact-donate-btn:hover {
  background: var(--ella-blue-dark);
}

.butterfly-accent {
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  width: 80px;
  height: auto;
  opacity: 0.9;
  animation: float 3s ease-in-out infinite;
}

.butterfly-accent svg {
  width: 100%;
  height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =============================================================================
   Statistics Section
   ============================================================================= */

.stats-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 300px;
  margin-bottom: 4rem;
}

.stats-content {
  background: var(--ella-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.stats-text {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.6;
  max-width: 350px;
}

.stats-text strong {
  font-weight: 800;
}

.stats-image {
  overflow: hidden;
}

.stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================================
   Programs Section
   ============================================================================= */

.programs-section {
  padding: 2rem 2rem 4rem;
  background: var(--white);
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 3rem;
  color: var(--text-color);
}

.section-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-title a:hover {
  color: var(--ella-blue-dark);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: #a6c1d8;
  border-radius: var(--border-radius-xl);
  padding: 2rem;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  background: #c5d7e5;
}

.program-image {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.program-arrow {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.program-card:hover .program-arrow {
  opacity: 1;
}

/* =============================================================================
   Events Section
   ============================================================================= */

.events-section {
  position: relative;
  padding: 4rem 2rem;
  background-image: url('/images/photos/action_shot_of_students_smiling_as_they_work_on_project_together.avif');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.events-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title-dark {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.events-section .section-title-dark {
  color: var(--white);
}

.events-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-3px);
}

.event-badge {
  display: inline-block;
  background: var(--ella-pink-medium);
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.event-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.event-rsvp-btn {
  display: inline-block;
  background: var(--ella-blue-medium);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.event-rsvp-btn:hover {
  background: var(--ella-blue-dark);
}

.view-all-events {
  display: inline-block;
  color: var(--ella-blue-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.view-all-events:hover {
  color: var(--text-color);
}

.comment-details summary {
  cursor: pointer;
  color: var(--ella-blue-dark);
  font-weight: 600;
}

.comment-details p {
  margin: 0.5rem 0 0;
}

/* =============================================================================
   Donate Section
   ============================================================================= */

.donate-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  margin-bottom: 4rem;
}

.donate-image-bg {
  position: relative;
  overflow: hidden;
}

.donate-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.donate-content {
  background: var(--ella-pink-light);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate-content h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.donate-content p {
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.7;
}

.donate-content a:not(.donate-cta-btn) {
  color: var(--ella-blue-dark);
  text-decoration: none;
  font-weight: 600;
}

.donate-content a:not(.donate-cta-btn):hover {
  text-decoration: underline;
}

.gracias {
  font-style: italic;
  font-weight: 600;
  color: var(--ella-blue-dark);
}

.donate-cta-btn {
  display: inline-block;
  background: var(--text-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.donate-cta-btn:hover {
  background: var(--ella-blue-dark);
}

/* =============================================================================
   Sponsors Section
   ============================================================================= */

.sponsors-section {
  padding: 4rem 2rem;
  background: var(--white);
  text-align: center;
}

.sponsors-intro {
  max-width: 600px;
  margin: 0 auto 0.5rem;
  color: var(--text-color);
  line-height: 1.7;
}

.sponsors-impact {
  color: var(--ella-blue-dark);
  font-weight: 600;
  margin-bottom: 2rem;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 2rem;
}

.sponsor-logo {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
  opacity: 1;
}

.sponsor-logo img {
  max-height: 60px;
  width: auto;
}

.sponsor-placeholder {
  display: inline-block;
  background: var(--ella-blue-light);
  color: var(--ella-blue-dark);
  padding: 1rem 2rem;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
}

/* =============================================================================
   Features Section
   ============================================================================= */

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.feature-card {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

/* =============================================================================
   Page Content
   ============================================================================= */

.page-content {
  background-color: var(--white);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.page-content h1 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-lg);
}

.page-content h2 {
  color: var(--text-color);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
}

.page-content ul {
  margin-left: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.page-content li {
  margin-bottom: var(--spacing-sm);
}

/* =============================================================================
   Forms
   ============================================================================= */

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--text-color);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* =============================================================================
   Buttons
   ============================================================================= */

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn:active {
  transform: scale(0.98);
}

/* =============================================================================
   Alerts
   ============================================================================= */

.alert {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--border-radius);
  margin-bottom: var(--spacing-lg);
}

.alert-success {
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--success-color);
  color: var(--success-color);
}

.alert-error {
  background-color: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--error-color);
  color: var(--error-color);
}

.alert ul {
  margin-left: var(--spacing-lg);
  margin-top: var(--spacing-sm);
}

/* =============================================================================
   Error Pages
   ============================================================================= */

.error-page {
  text-align: center;
  padding: var(--spacing-xxl);
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.error-page h1 {
  font-size: 6rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-sm);
}

.error-page h2 {
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
}

.error-page p {
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.error-page .requested-url {
  margin-bottom: var(--spacing-xl);
}

.error-page code {
  background-color: var(--bg-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--border-radius);
  font-family: monospace;
}

.error-details {
  text-align: left;
  margin: var(--spacing-xl) 0;
}

.error-details summary {
  cursor: pointer;
  color: var(--text-light);
}

.error-details pre {
  background-color: var(--bg-color);
  padding: var(--spacing-md);
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin-top: var(--spacing-md);
  font-size: var(--font-size-sm);
}

/* =============================================================================
   Table Design
   ============================================================================= */

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  }
th, td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}
th {
  background: #f2f2f2;
}

/* =============================================================================
   Responsive Design
   ============================================================================= */

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .nav-list {
    gap: var(--spacing-md);
  }

  .hero h1 {
    font-size: var(--font-size-xxl);
  }

  .error-page h1 {
    font-size: 4rem;
  }

  /* Ella Rises Responsive */
  .hero-welcome {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
  }

  .centered-logo {
    width: 140px;
    height: 140px;
  }

  .slider-image-wrapper {
    width: 100px;
    height: 100px;
  }

  .hero-mission {
    font-size: 0.95rem;
    padding: 1rem;
  }

  .impact-section {
    height: 400px;
  }

  .impact-overlay h3 {
    font-size: 1.5rem;
  }

  .stats-section {
    grid-template-columns: 1fr;
  }

  .stats-content {
    padding: 2rem;
  }

  .stats-text {
    font-size: 1.2rem;
  }

  .programs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .program-card {
    padding: 1.5rem 1rem;
  }

  .program-image {
    width: 100px;
    height: 120px;
  }

  .donate-section {
    grid-template-columns: 1fr;
  }

  .donate-image-bg {
    height: 250px;
  }

  .donate-content {
    padding: 2rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .ella-nav-list {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ella-nav-list a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero-welcome {
    font-size: 1.4rem;
  }

  .slider-images {
    gap: 0.75rem;
  }

  .slider-image-wrapper {
    width: 80px;
    height: 80px;
  }

  .slider-image-wrapper.logo-circle {
    width: 100px;
    height: 100px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .events-list {
    grid-template-columns: 1fr;
  }

  .cta-inner h2 {
    font-size: 1.2rem;
  }

  .section-title,
  .section-title-dark {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }
}

.hidden-row {
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}

/* =============================================================================
   Events Page Styles
   ============================================================================= */

/* Events Hero */
.events-hero {
  background: linear-gradient(135deg, var(--ella-blue-light), var(--ella-pink-light));
  padding: 3rem 2rem;
  text-align: center;
}

.events-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.events-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ella-blue-dark);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.events-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
}

/* My Events Section */
.my-events-section {
  background: var(--ella-pink-light);
  padding: 2rem;
}

.my-events-container {
  max-width: 1200px;
  margin: 0 auto;
}

.my-events-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.title-icon {
  font-size: 1.5rem;
}

.my-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.my-event-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.my-event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.my-event-badge {
  display: inline-block;
  background: var(--ella-blue-medium);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.my-event-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.my-event-details {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.my-event-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Add to Calendar Button Wrapper */
.calendar-button-wrapper {
  display: inline-block;
}

/* Customize add-to-calendar-button to match site theme */
.calendar-button-wrapper add-to-calendar-button {
  --btn-background: var(--ella-orange);
  --btn-background-hover: #e28f49;
  --btn-text: var(--white);
  --font: 'Montserrat', sans-serif;
}

/* Registration Status */
.registration-status {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: capitalize;
}

.status-confirmed {
  background: rgba(39, 174, 96, 0.15);
  color: var(--success-color);
}

.status-attended {
  background: rgba(52, 152, 219, 0.15);
  color: var(--ella-blue-dark);
}

.status-cancelled {
  background: rgba(231, 76, 60, 0.15);
  color: var(--error-color);
}

/* All Events Section */
.all-events-section {
  background: var(--white);
  padding: 2rem;
}

.all-events-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Events Controls */
.events-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.search-wrapper {
  flex: 1;
  min-width: 250px;
}

.events-search {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.events-search:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
  box-shadow: 0 0 0 3px rgba(127, 175, 195, 0.2);
}

.filter-wrapper {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.events-filter {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--border-color);
  border-radius: 30px;
  font-size: 0.9rem;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s;
}

.events-filter:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
}

.reset-filters-btn {
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--ella-coral);
  border-radius: 30px;
  background: transparent;
  color: var(--ella-coral);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.reset-filters-btn:hover {
  background: var(--ella-coral);
  color: var(--white);
}

/* Active Filters */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ella-blue-light);
  color: var(--ella-blue-dark);
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.chip-close {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.chip-close:hover {
  opacity: 1;
}

/* No Events Message */
.no-events-message {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.no-events-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

/* Events Table */
.events-table-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.events-table th,
.events-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.events-table th {
  background: var(--ella-pink-light);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-color);
}

.events-table tbody tr:hover {
  background: var(--ella-blue-light);
}

/* Event Name Cell */
.event-name-cell {
  max-width: 250px;
}

.event-name-cell .name {
  display: block;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.event-name-cell .description {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Event Type Badge */
.event-type-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.type-leadership {
  background: rgba(127, 175, 195, 0.2);
  color: var(--ella-blue-dark);
}

.type-technical {
  background: rgba(245, 169, 98, 0.2);
  color: #c07a3a;
}

.type-career {
  background: rgba(39, 174, 96, 0.2);
  color: var(--success-color);
}

.type-education {
  background: rgba(155, 89, 182, 0.2);
  color: #8e44ad;
}

.type-social {
  background: rgba(241, 141, 141, 0.2);
  color: #c0392b;
}

.type-other {
  background: var(--bg-color);
  color: var(--text-light);
}

/* Event DateTime */
.event-datetime {
  white-space: nowrap;
}

.event-date-display {
  display: block;
  font-weight: 600;
  color: var(--text-color);
}

.event-time-display {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Deadline Cell */
.deadline {
  font-size: 0.9rem;
}

.past-deadline {
  color: var(--error-color);
  text-decoration: line-through;
}

/* Spots Cell */
.spots-cell {
  min-width: 100px;
}

.spots-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.spots-available {
  background: rgba(39, 174, 96, 0.15);
  color: var(--success-color);
}

.spots-low {
  background: rgba(245, 169, 98, 0.2);
  color: #c07a3a;
}

.spots-full {
  background: rgba(231, 76, 60, 0.15);
  color: var(--error-color);
}

/* Capacity Bar */
.capacity-bar {
  width: 100%;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}

.capacity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success-color), var(--ella-orange));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Register Button */
.register-form {
  margin: 0;
}

.register-btn {
  background: var(--ella-blue-medium);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.register-btn:hover {
  background: var(--ella-blue-dark);
  transform: translateY(-1px);
}

.deregister-btn {
  background: var(--ella-coral);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.deregister-btn:hover {
  background: #d84a5e;
  transform: translateY(-1px);
}

.registration-closed {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Admin Button */
.admin-form {
  margin: 0;
}

.admin-participants-btn {
  background: var(--ella-orange);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}

.admin-participants-btn:hover {
  background: #e28f49;
}

/* Registration History Section (Collapsed) */
.history-section {
  padding: 0 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.history-container {
  max-width: 1200px;
  margin: 0 auto;
}

.history-accordion {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.history-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-light);
  list-style: none;
  transition: background 0.2s;
}

.history-toggle::-webkit-details-marker {
  display: none;
}

.history-toggle:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.history-icon {
  font-size: 1.25rem;
}

.history-count {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.toggle-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
  font-size: 0.75rem;
  color: var(--text-light);
}

details[open] .toggle-arrow {
  transform: rotate(180deg);
}

.history-content {
  padding: 1.5rem;
  background: var(--bg-color);
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.history-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.history-card:hover {
  opacity: 1;
}

.history-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--bg-color);
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.history-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 0 0.5rem 0;
}

.history-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.history-status {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--bg-color);
  color: var(--text-light);
}

/* Past Events Accordion */
.past-events-accordion {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.past-events-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-light);
  list-style: none;
  transition: background 0.2s;
}

.past-events-toggle::-webkit-details-marker {
  display: none;
}

.past-events-toggle:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.past-icon {
  font-size: 1.25rem;
}

.past-count {
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
}

.past-events-content {
  padding: 1.5rem;
  background: var(--bg-color);
}

.past-events-table {
  opacity: 0.85;
}

.past-events-table tbody tr:hover {
  opacity: 1;
}

.past-event-row {
  background: rgba(0, 0, 0, 0.02);
}

.spots-past {
  background: var(--bg-color);
  color: var(--text-light);
}

/* Admin Events Management Accordion */
.admin-events-accordion {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 2px solid var(--ella-pink-medium);
}

.admin-events-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  background: linear-gradient(135deg, var(--ella-pink-light) 0%, var(--ella-pink-medium) 100%);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-color);
  list-style: none;
  transition: background 0.2s;
}

.admin-events-toggle::-webkit-details-marker {
  display: none;
}

.admin-events-toggle:hover {
  background: linear-gradient(135deg, var(--ella-pink-medium) 0%, var(--ella-pink-dark) 100%);
}

.admin-icon {
  font-size: 1.25rem;
}

.admin-events-content {
  padding: 1.5rem;
  background: #fefefe;
}

.admin-add-section {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.admin-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--ella-pink-light);
}

.admin-add-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 150px;
}

.admin-form-group.wide {
  flex: 2;
  min-width: 250px;
}

.admin-form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admin-form-group input,
.admin-form-group select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-form-group input:focus,
.admin-form-group select:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
  box-shadow: 0 0 0 3px rgba(127, 175, 195, 0.2);
}

.admin-add-btn {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--ella-blue-medium), var(--ella-blue-dark));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.admin-add-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.admin-table-section {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
}

.admin-events-table {
  font-size: 0.85rem;
}

.admin-events-table th {
  font-size: 0.7rem;
  padding: 0.5rem;
}

.admin-events-table td {
  padding: 0.4rem;
  vertical-align: middle;
}

.admin-event-row {
  background: var(--white);
}

.admin-event-row:hover {
  background: var(--ella-pink-light);
}

.admin-input {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  width: 100%;
  background: var(--white);
}

.admin-input:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
}

.admin-select {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.8rem;
  width: 100%;
  max-width: 180px;
  background: var(--white);
}

.datetime-input {
  min-width: 145px;
}

.capacity-input {
  max-width: 70px;
}

.id-cell {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.75rem;
}

.actions-cell {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.admin-edit-form,
.admin-delete-form {
  display: inline;
}

.admin-save-btn,
.admin-delete-btn {
  padding: 0.35rem 0.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.admin-save-btn {
  background: var(--success-color);
  color: var(--white);
}

.admin-save-btn:hover {
  transform: scale(1.1);
}

.admin-delete-btn {
  background: var(--error-color);
  color: var(--white);
}

.admin-delete-btn:hover {
  transform: scale(1.1);
}

/* Hero Admin Button */
.hero-admin-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--ella-blue-medium), var(--ella-blue-dark));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.hero-admin-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Admin Action Buttons in Table */
.admin-actions-cell {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.admin-edit-btn,
.admin-del-btn {
  padding: 0.3rem 0.5rem;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  font-size: 0.85rem;
  transition: transform 0.2s, background 0.2s;
}

.admin-edit-btn {
  background: var(--ella-blue-light);
}

.admin-edit-btn:hover {
  background: var(--ella-blue-medium);
  transform: scale(1.1);
}

.admin-del-btn {
  background: #fee2e2;
}

.admin-del-btn:hover {
  background: #fecaca;
  transform: scale(1.1);
}

.inline-form {
  display: inline;
}

/* Event Modals */
.event-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.event-modal.show {
  display: flex;
  opacity: 1;
}

.event-modal-content {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.event-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--ella-pink-light), var(--ella-pink-medium));
  border-bottom: 1px solid var(--border-color);
}

.event-modal-header h2 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-color);
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-light);
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: var(--error-color);
}

.event-modal-form {
  padding: 1.5rem;
}

.modal-form-group {
  margin-bottom: 1rem;
}

.modal-form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.modal-form-group input,
.modal-form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form-group input:focus,
.modal-form-group select:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
  box-shadow: 0 0 0 3px rgba(127, 175, 195, 0.2);
}

.modal-form-row {
  display: flex;
  gap: 1rem;
}

.modal-form-row .modal-form-group {
  flex: 1;
}

.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
}

.modal-cancel-btn {
  padding: 0.65rem 1.25rem;
  background: var(--bg-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-cancel-btn:hover {
  background: var(--border-color);
}

.modal-submit-btn {
  padding: 0.65rem 1.25rem;
  background: linear-gradient(135deg, var(--ella-blue-medium), var(--ella-blue-dark));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.modal-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Delete Modal Specific */
.delete-modal-content {
  max-width: 400px;
}

.delete-header {
  background: linear-gradient(135deg, #fee2e2, #fecaca);
}

.delete-modal-body {
  padding: 1.5rem;
  text-align: center;
}

.delete-modal-body p {
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.delete-warning {
  color: var(--error-color);
  font-size: 0.9rem;
}

.delete-modal-content form {
  padding: 0 1.5rem 1.5rem;
}

.modal-delete-btn {
  padding: 0.65rem 1.25rem;
  background: var(--error-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.modal-delete-btn:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

/* Events Page Responsive */
@media (max-width: 768px) {
  .events-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }

  .my-events-grid {
    grid-template-columns: 1fr;
  }

  .events-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .search-wrapper {
    min-width: 100%;
  }

  .filter-wrapper {
    justify-content: center;
  }

  .events-table {
    min-width: 700px;
  }
  
  .history-grid {
    grid-template-columns: 1fr;
  }
  
  .history-section {
    padding: 0 1rem 1rem;
  }
}

/* =============================================================================
   Participant registration
   ============================================================================= */

   .registration-container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f5f5f5;
}

.registration-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  width: 100%;
}

.registration-card h1 {
  color: #333;
  margin-bottom: 10px;
  font-size: 2em;
}

.registration-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.error-message {
  background-color: #fee;
  border: 1px solid #fcc;
  color: #c33;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.registration-form {
  width: 100%;
}

.form-section {
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
  border-bottom: none;
}

.section-title {
  color: #333;
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: 600;
}

.field-description {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 15px;
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  color: #333;
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 0.95em;
}

.required {
  color: #e74c3c;
  font-weight: bold;
}

.form-input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-label:hover {
  background-color: #f9f9f9;
  border-color: #4CAF50;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-label span {
  color: #333;
  font-size: 0.95em;
}

.form-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 30px;
}

.btn-submit {
  background-color: #4CAF50;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 1.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #45a049;
}

.btn-cancel-link {
  color: #666;
  padding: 14px 32px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.1em;
  transition: background-color 0.3s, border-color 0.3s;
  display: inline-block;
}

.btn-cancel-link:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-card {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-submit,
  .btn-cancel-link {
    width: 100%;
    text-align: center;
  }
}
.survey-search-bar {
  margin: 1rem 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.survey-search-bar input {
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  width: 260px;
  max-width: 100%;
}

.survey-search-bar .table-action {
  white-space: nowrap;
}

/* =============================================================================
   About Page
   ============================================================================= */

.about-page {
  padding: 2rem 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-hero {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.about-hero-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}

.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ella-blue-dark);
  line-height: 1.1;
  text-align: center;
}

.about-hero-copy {
  max-width: 820px;
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.about-butterfly {
  width: 60px;
  height: 60px;
  margin-top: -16px;
}

.about-video {
  margin: 1.5rem auto 2rem;
  max-width: 720px;
  position: relative;
}

.about-video video {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.video-mute-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-mute-toggle:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

.founder-section {
  margin: 2rem auto 3rem;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.founder-card {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  padding: 1.75rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.founder-card--reverse {
  flex-direction: row-reverse;
}

.founder-photo img {
  width: 280px;
  max-width: 35vw;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.founder-content h2 {
  font-size: 1.7rem;
  margin: 0;
  color: var(--ella-blue-dark);
}

.founder-name-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.linkedin-badge {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ella-blue-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.linkedin-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.linkedin-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.founder-role-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--ella-orange);
  font-weight: 700;
  margin: 0;
}

.founder-content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.5;
}

.team-section {
  margin-top: 3rem;
  text-align: center;
}

.team-section h2 {
  font-size: 2rem;
  color: var(--ella-blue-dark);
  margin-bottom: 1rem;
}

.team-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.team-track-wrapper {
  width: 950px;
  max-width: 100%;
  height: 380px;
  overflow: hidden;
  margin: 0 auto;
}

.team-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.6s ease;
}

.team-card {
  min-width: 680px;
  max-width: 90vw;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  min-height: 340px;
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.team-card.active {
  opacity: 1;
}

.team-photo img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.team-info {
  text-align: left;
}

.team-info h3 {
  margin: 0.5rem 0 0.15rem;
  font-size: 1.2rem;
}

.team-role {
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--ella-blue-medium);
}

.team-info p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.team-arrow:hover {
  transform: translateY(-50%) scale(1.12);
  background: rgba(0, 0, 0, 0.4);
}

.team-arrow[data-direction='prev'] {
  left: 0.5rem;
}

.team-arrow[data-direction='next'] {
  right: 0.5rem;
}

.team-track-wrapper::before,
.team-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.team-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.team-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

@media (max-width: 900px) {
  .team-track-wrapper {
    height: 420px;
  }

  .team-card {
    flex-direction: column;
    min-width: calc(100vw - 90px);
    min-height: 420px;
  }

  .team-photo img {
    width: 100%;
    height: 240px;
  }
}

.founder-card {
  flex-wrap: nowrap;
}

@media (max-width: 850px) {
  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-card--reverse {
    flex-direction: column;
  }

  .founder-photo img {
    width: 100%;
    max-width: 440px;
  }

  .founder-content {
    text-align: center;
  }

  .founder-name-row {
    justify-content: center;
  }

  .founder-content p {
    text-align: left;
  }
}

/* =============================================================================
   Admin Panel Styles
   ============================================================================= */

.admin-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.admin-header {
  margin-bottom: 1.5rem;
}

.admin-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ella-blue-dark);
  margin-bottom: 0.5rem;
}

.admin-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.admin-table-wrapper {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: var(--ella-pink-light);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text-color);
}

.admin-table tbody tr:hover {
  background: var(--ella-blue-light);
}

.admin-input {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  width: 100%;
  font-size: 0.9rem;
}

.admin-input:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
  box-shadow: 0 0 0 2px rgba(127, 175, 195, 0.2);
}

.admin-select {
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--white);
  font-size: 0.9rem;
}

.admin-select:focus {
  outline: none;
  border-color: var(--ella-blue-medium);
}

.action-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-save {
  padding: 0.4rem 1rem;
  background: var(--success-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-save:hover {
  background: #219a52;
}

.btn-delete {
  padding: 0.4rem 1rem;
  background: var(--error-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-delete:hover {
  background: #c0392b;
}

/* =============================================================================
   Modal Styles
   ============================================================================= */

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 450px;
  width: 90%;
  text-align: center;
}

.modal-content h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-cancel {
  padding: 0.6rem 1.5rem;
  background: var(--bg-color);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cancel:hover {
  background: var(--border-color);
}

.btn-confirm-delete {
  padding: 0.6rem 1.5rem;
  background: var(--error-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-confirm-delete:hover {
  background: #c0392b;
}

/* Admin Add Form */
.admin-add-form {
  background: var(--ella-pink-light);
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 1.5rem;
}

.admin-add-form h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 700;
}
