/* ==========================================================================
   GLOBAL VARIABLES & TOKENS
   ========================================================================== */
:root {
  /* Color Palette - Premium Dark Theme */
  --color-bg-base: #0a0a0c;
  --color-bg-surface: #141416;
  --color-bg-surface-light: #1c1c1f;

  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.6);

  --color-primary-brand: #015558;
  /* Dark Teal from logotype */
  --color-primary-hover: #0d7a78;
  --color-primary-glow: rgba(10, 92, 90, 0.4);

  --color-accent-blue: #3b82f6;
  --color-accent-blue-glow: rgba(59, 130, 246, 0.4);

  --color-accent-teal: #2dd4bf;
  /* Brighter teal for highlights on dark BG */

  /* Typography */
  --font-family-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-family-serif: 'Playfair Display', Georgia, serif;
  /* Elegant headings */

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 4rem;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* Z-index tiers */
  --z-index-base: 1;
  --z-index-nav: 50;
  --z-index-modal: 100;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family-sans);
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Organic Background Auras (Ambient Stage Lighting) */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 150%, rgba(10, 92, 90, 0.2) 0%, #050505 60%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-serif);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.text-lead {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  font-weight: 300;
}

.text-gradient {
  background: linear-gradient(to right, var(--color-primary-brand), #2ab5b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-family-sans);
}

.btn-outline-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background-color: transparent;
  border-color: var(--color-primary-brand);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(10, 92, 90, 0.4);
}

.btn-primary:hover {
  background-color: var(--color-primary-brand);
  color: white;
  box-shadow: 0 0 20px var(--color-primary-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Input Fields (for login/inscripcion later) */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-input {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  /* Dark semi-transparent */
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-family: var(--font-family-sans);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary-brand);
  box-shadow: 0 0 10px rgba(1, 85, 88, 0.5);
  /* Glow effect with primary color */
  background-color: rgba(255, 255, 255, 0.08);
}

/* Custom Checkboxes and Radios */
.checkbox-custom,
.radio-custom {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-right: 8px;
  vertical-align: middle;
}

.checkbox-custom {
  border-radius: 4px;
}

.radio-custom {
  border-radius: 50%;
}

.checkbox-custom:checked,
.radio-custom:checked {
  background-color: var(--color-primary-brand);
  border-color: var(--color-primary-brand);
}

.checkbox-custom:checked::after {
  content: '✓';
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.radio-custom:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
}

.inline-label {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-secondary);
  cursor: pointer;
  user-select: none;
}

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-index-nav);
  padding: var(--spacing-md) 0;
  background-color: transparent;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal);
}

.main-header.scrolled {
  background-color: rgba(10, 10, 12, 0.85);
  /* Slightly darker */
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-family-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary-brand);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo img {
  height: 35px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary-brand);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  box-shadow: 0 0 8px var(--color-primary-glow);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
    background: transparent;
    border: none;
    color: var(--color-text-primary);
    cursor: pointer;
    z-index: 101;
    /* Above nav links */
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: rgba(20, 20, 22, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 2rem;
    transition: right var(--transition-normal);
    z-index: 100;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-active .nav-links {
    right: 0;
  }

  .brand-icon-sm {
    max-height: 32px !important;
  }

  .brand-text {
    max-height: 24px !important;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  z-index: 99;
}

body.nav-active .nav-overlay {
  opacity: 1;
  pointer-events: all;
}

/* ==========================================================================
   UTILITY & LAYOUT CLASSES
   ========================================================================== */
.page-auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

/* Glassmorphism Panel */
.glass-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

@media (max-width: 768px) {
  .page-auth-wrapper {
    padding: 100px 10px 40px;
  }

  .glass-panel {
    padding: 24px 15px;
    width: 100%;
    margin: 0;
  }

  .student-entry {
    padding: 15px !important;
  }
}

/* Pay Card Styles for Mobile */
.pago-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
}

.pago-card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pago-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-brand-full {
  width: calc(100% - 40px);
  margin: 0 20px;
  background-color: var(--color-primary-brand);
  box-shadow: 0 0 15px var(--color-primary-glow);
  text-align: center;
  justify-content: center;
}

.payment-actions-container {
  padding-top: var(--spacing-md);
  margin-top: var(--spacing-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  .btn-brand-full {
    width: 100%;
    margin: 0;
  }

  .payment-actions-container {
    flex-direction: row;
    justify-content: space-between;
  }
}


.surface-panel {
  background-color: var(--color-bg-surface);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xl);
}

.payment-method-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-method-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.payment-method-card.selected {
  border-color: var(--color-primary-brand);
  background: rgba(1, 85, 88, 0.1);
  box-shadow: 0 0 15px rgba(10, 92, 90, 0.2);
}

.transfer-info-box {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


.surface-panel-light {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  padding: var(--spacing-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.surface-panel-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px 0 rgba(10, 92, 90, 0.4);
  border-color: #0a5c5a;
}

/* Layout */
.w-full {
  width: 100%;
}

.fixed-h-card {
  height: 300px;
}

.max-w-md {
  max-width: 600px;
}

/* Custom Typography & List Utilities */
.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.lh-lg {
  line-height: 1.0;
}

.list-none {
  list-style-type: none;
  padding-left: 0;
}

.max-w-lg {
  max-width: 800px;
}

.max-w-xl {
  max-width: 1000px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Flexbox */
.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

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

.justify-end {
  justify-content: flex-end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.gap-xs {
  gap: var(--spacing-xs);
}

.gap-sm {
  gap: var(--spacing-sm);
}

.gap-md {
  gap: var(--spacing-md);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

/* Spacing */
.mb-0 {
  margin-bottom: 0;
}

.mb-xs {
  margin-bottom: var(--spacing-xs);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.mb-2xl {
  margin-bottom: var(--spacing-2xl);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mt-auto {
  margin-top: auto;
}

.pt-md {
  padding-top: var(--spacing-md);
}

.pt-lg {
  padding-top: var(--spacing-lg);
}

.pt-xl {
  padding-top: var(--spacing-xl);
}

.pb-md {
  padding-bottom: var(--spacing-md);
}

.pb-lg {
  padding-bottom: var(--spacing-lg);
}

.p-md {
  padding: 1rem;
}

.py-md {
  padding-top: var(--spacing-md);
  padding-bottom: var(--spacing-md);
}

.py-2xl {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.px-md {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.px-lg {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* Typography */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-white {
  color: white;
}

.text-primary {
  color: var(--color-primary-brand);
}

.text-accent {
  color: var(--color-accent-teal);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-success {
  color: #10b981;
}

.text-danger {
  color: #ef4444;
}

.font-sans {
  font-family: var(--font-family-sans);
}

.font-serif {
  font-family: var(--font-family-serif);
}

.font-mono {
  font-family: monospace;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.text-sm {
  font-size: 0.85rem;
}

.text-md {
  font-size: 0.9rem;
}

.text-lg {
  font-size: 1.1rem;
}

.text-xl {
  font-size: 1.2rem;
}

.text-2xl {
  font-size: 1.25rem;
}

.text-3xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2rem;
}

.text-5xl {
  font-size: 4rem;
}

.uppercase {
  text-transform: uppercase;
}

.ls-1 {
  letter-spacing: 1px;
}

/* Status alerts */
.alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: #ef4444;
  padding: 1rem;
}

/* Modifiers */
.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.border-top-light {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  text-transform: none;
}

.btn-block {
  width: 100%;
}

.ml-auto {
  margin-left: 1rem;
}

.min-w-250 {
  min-width: 250px;
}

.cursor-pointer {
  cursor: pointer;
}

/* Form Elements */
.checkbox-custom {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--color-primary-brand);
}

.radio-custom {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--color-primary-brand);
}

.inline-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-contents {
  display: contents;
}

.status-box {
  padding: var(--spacing-md);
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
}

.status-box.success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #10b981;
}

.status-box.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* Grid specific mapping */
.grid-cols-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-cols-auto-fit-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-cols-auto-fit-250 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-cols-auto-fit-320 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Additional specific utilities */
.align-start {
  align-items: flex-start;
}

.border-bottom-light {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.border-left-primary {
  border-left: 3px solid var(--color-primary-brand);
}

.bg-black-alpha-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.p-lg {
  padding: var(--spacing-lg);
}

.rounded-8 {
  border-radius: 8px;
}

/* ==========================================================================
   MOBILE & FIXES (TAREA 1, 2, 4)
   ========================================================================== */
.footer-desc {
  max-width: 290px;
}

.pt-120 {
  padding-top: 120px;
}

.m-0 {
  margin: 0;
}

.leading-relaxed {
  line-height: 1.5;
}

.btn-whatsapp {
  background-color: #25D366;
  border-color: #25D366;
  color: #141416;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background-color: #20b858;
  border-color: #20b858;
  color: #141416;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px);
}

.btn-confirm {
  box-shadow: 0 0 15px rgba(10, 92, 90, 0.6);
  letter-spacing: 2px;
}

.btn-remove-student {
  top: 10px;
  right: 10px;
  background: none;
  border: none;
}

.status-box.success-custom {
  padding: 2.5rem 1.5rem;
  border-color: #2dd4bf;
  background-color: rgba(45, 212, 191, 0.05);
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.status-pago-success {
  padding: 1.5rem;
  border-color: #2dd4bf;
  background: rgba(45, 212, 191, 0.05);
  text-align: center;
  border-radius: 8px;
  border: 1px solid #2dd4bf;
}

.status-pago-error {
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.text-teal {
  color: var(--color-accent-teal);
}

.text-teal:hover {
  color: #fff;
}

.underline {
  text-decoration: underline;
}

.font-semibold {
  font-weight: 600;
}

.list-none {
  list-style-type: none;
}

.pl-0 {
  padding-left: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.status-icon {
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* TAREA 4: Mobile adjustments for Forms (Inscripcion) */
@media (max-width: 768px) {
  .page-auth-wrapper {
    padding-top: 80px !important;
  }

  .glass-panel {
    padding: var(--spacing-md) !important;
  }

  /* Inputs full width in mobile */
  .grid-cols-auto-fit-300,
  .grid-cols-auto-fit,
  .grid-cols-auto-fit-250,
  .grid-cols-auto-fit-320 {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  /* Buttons min 44px */
  .btn,
  .form-input {
    min-height: 44px;
  }

  .d-flex.gap-lg {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

/* ==========================================================================
   TABLE OVERRIDES (ADMIN PANEL)
   Ensures tables expand and text doesn't squish
   ========================================================================== */
.data-table th,
.data-table td {
  padding: 15px 20px !important;
}

.data-table th,
.data-table td.nowrap {
  white-space: nowrap;
}

.data-table th.col-min {
  width: 1%;
  white-space: nowrap;
}

.data-table th.col-wide {
  width: 40%;
  white-space: normal;
}

/* Fix for Select Options illegibility */
select.form-input option {
  background-color: var(--color-bg-base, #111111);
  color: #ffffff;
}

/* Mobile only display utility */
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
}
