/* Material Design System - EntertainmentCareers.Net */
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;600&display=swap');

/* ============================================================================
   Banners - Error, Warning, Info
   ============================================================================ */
.md-banner {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 20px;
  margin: 20px 0;
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.md-banner .material-icons {
  font-size: 24px;
  margin-top: 2px;
}

.md-banner .md-banner-note {
  margin: 8px 0 0 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Error Banner */
.md-error {
  background: #ffebee;
  border-left: 6px solid #f44336;
  color: #b71c1c;
}

.md-error .material-icons {
  color: #d32f2f;
}

.md-error a {
  color: #8a1c12;
  text-decoration: underline;
}

/* Warning Banner */
.md-warning {
  background: #fff8e1;
  border-left: 6px solid #ffb300;
  color: #7a4f00;
}

.md-warning .material-icons {
  color: #ff8f00;
}

.md-warning a {
  color: #6d4c00;
  text-decoration: underline;
}

/* Info Banner */
.md-info {
  background: #e8f4fd;
  border-left: 6px solid #2196f3;
  color: #0b3d66;
}

.md-info .material-icons {
  color: #1e88e5;
}

.md-info a {
  color: #0b3d66;
  text-decoration: underline;
}

/* Success Banner */
.md-success {
  background: #e8f5e9;
  border-left: 6px solid #4caf50;
  color: #1b5e20;
}

.md-success .material-icons {
  color: #388e3c;
}

.md-success a {
  color: #1b5e20;
  text-decoration: underline;
}

/* ============================================================================
   Alert Behaviors (Global) - Auto-dismiss, Dismissible, Persistent
   ============================================================================ */

/* Auto-dismiss alerts (disappear after 5 seconds) */
.md-banner.md-auto-dismiss {
  animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dismissible alerts (user can close with button) */
.md-banner.md-dismissible .md-banner-close {
  display: flex;
}

/* Persistent alerts (no close button, must take action) */
.md-banner.md-persistent .md-banner-close {
  display: none !important;
}

/* Slide animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.md-banner.removing {
  animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================================
   Alert Container (Mobile-First Compact Layout)
   ============================================================================ */
.md-alert-container {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.md-alert-container .md-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    border-left: 4px solid;
}

.md-alert-container .md-banner .material-icons {
    font-size: 20px;
    flex-shrink: 0;
}

.md-alert-container .md-banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.md-alert-container .md-banner-text {
    font-weight: 400;
    font-size: 13px;
    opacity: 0.95;
}

.md-alert-container .md-banner-link {
    color: inherit;
    font-weight: 500;
    text-decoration: none;
}

.md-alert-container .md-banner-link:hover {
    text-decoration: underline;
}

.md-alert-container .md-banner-close {
    background: transparent;
    border: none;
    color: inherit;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
    opacity: 0.7;
}

.md-alert-container .md-banner-close:hover {
    background: rgba(0, 0, 0, 0.08);
    opacity: 1;
}

.md-alert-container .md-banner.removing {
    animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Desktop responsive scaling */
@media (min-width: 768px) {
    .md-alert-container .md-banner {
        padding: 16px 20px;
        gap: 16px;
    }

    .md-alert-container .md-banner .material-icons {
        font-size: 24px;
    }

    .md-alert-container .md-banner-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .md-alert-container .md-banner-close {
        width: 28px;
        height: 28px;
        font-size: 24px;
    }
}

/* ============================================================================
   Cards (Basic/Legacy - MD2 Style)
   ============================================================================ */
.md-card {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 380px;
  margin: 20px auto;
  font-family: 'Roboto', sans-serif;
}

.md-card-header {
    background-color: #f7f7f7;
    padding: 16px;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
}

.md-card-content {
  padding: 16px;
}

/* MD3 Enhanced Cards (Override basic styles when .md3 wrapper is present) */
.md3 .md-card,
.wrapper.md3 .md-card,
div.md3 .md-card {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
  padding: 24px !important;
  overflow: visible !important;
  margin-bottom: 20px !important;
  max-width: 100% !important;
}

.md3 .md-card-header,
.wrapper.md3 .md-card-header,
div.md3 .md-card-header {
  background-color: transparent !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  margin-bottom: 16px !important;
  padding: 0 0 12px 0 !important;
  color: #1f2937 !important;
  text-transform: none !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.md3 .md-card-content,
.wrapper.md3 .md-card-content,
div.md3 .md-card-content {
  padding: 0 !important;
}


/* Info Rows */
.md-info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.md-info-row:last-child {
  border-bottom: none;
}

.md-leftlabel {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.md-validate {
  font-weight: 400;
  color: #333;
  font-size: 16px;
}

/* ============================================================================
   Buttons (MD3 Style)
   ============================================================================ */
.md-button {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.md-button.md-primary {
  background-color: #1976d2;
  color: #fff;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.md-button.md-primary:hover {
  background-color: #1565c0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.md-button.md-secondary {
  background-color: #9e9e9e;
  color: #fff;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.md-button.md-secondary:hover {
  background-color: #757575;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.md-button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.md-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.4);
}

.md-button.md-disabled, .md-button.md-disabled:hover {
  background-color: #c0c0c0;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

/* ============================================================================
   Page Headers (MD3 Typography)
   ============================================================================ */
.md-page-header {
    margin-bottom: 24px;
}

.md-h1 {
    font-size: 28px;
    font-weight: 400;
    color: #1d1b20;
    margin: 0 0 6px 0;
    line-height: 34px;
}

.md-subtitle {
    font-size: 14px;
    color: #49454f;
    margin: 0;
}

/* ============================================================================
   MD3 Enhanced Components (Site-Wide)
   ============================================================================ */
.md3 .md-card {
  background: #ffffff;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12);
  padding: 22px;
}

.md3 .md-card-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.md3 .md-field {
  margin-bottom: 14px;
}

.md3 .md-field.md-floating {
  position: relative;
}

.md3 .md-input {
  width: 100%;
  padding: 22px 16px 10px 16px;
  background: #eef3fb;
  border: 1px solid #d9e2f2;
  border-radius: 14px;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.15s ease;
}

.md3 .md-input:focus {
  outline: none;
  border-color: #136bbe;
  box-shadow: 0 0 0 4px rgba(19, 107, 190, 0.12);
  background: #ffffff;
}

.md3 .md-float-label {
  position: absolute;
  left: 16px;
  top: 14px;
  font-size: 12px;
  color: #64748b;
  transition: all 0.15s ease;
  pointer-events: none;
}

.md3 .md-input:focus + .md-float-label,
.md3 .md-input:not(:placeholder-shown) + .md-float-label {
  top: 6px;
  font-size: 10px;
  color: #136bbe;
}

.md3 .md-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
}

.md3 .md-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #374151;
}

.md3 .md-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.md3 .md-btn-primary {
  background: #136bbe;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.md3 .md-btn-primary:hover {
  background: #0f5aa1;
}

.md3 .md-link {
  color: #136bbe;
  text-decoration: none;
  font-size: 13px;
}

.md3 .md-link:hover {
  text-decoration: underline;
}

.md3 .md-helper {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

/* Legacy alias for backward compatibility */
.login-md3 .md-card { background: #ffffff; border: 0; border-radius: 16px; box-shadow: 0 10px 28px rgba(17, 24, 39, 0.12); padding: 22px; }
.login-md3 .md-card-header { font-size: 18px; font-weight: 600; margin-bottom: 16px; color: #1f2937; }
.login-md3 .md-field { margin-bottom: 14px; }
.login-md3 .md-field.md-floating { position: relative; }
.login-md3 .md-input { width: 100%; padding: 22px 16px 10px 16px; background: #eef3fb; border: 1px solid #d9e2f2; border-radius: 14px; font-size: 15px; box-sizing: border-box; transition: all 0.15s ease; }
.login-md3 .md-input:focus { outline: none; border-color: #136bbe; box-shadow: 0 0 0 4px rgba(19, 107, 190, 0.12); background: #ffffff; }
.login-md3 .md-float-label { position: absolute; left: 16px; top: 14px; font-size: 12px; color: #64748b; transition: all 0.15s ease; pointer-events: none; }
.login-md3 .md-input:focus + .md-float-label, .login-md3 .md-input:not(:placeholder-shown) + .md-float-label { top: 6px; font-size: 10px; color: #136bbe; }
.login-md3 .md-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 6px 0 14px; }
.login-md3 .md-checkbox { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #374151; }
.login-md3 .md-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.login-md3 .md-btn-primary { background: #136bbe; color: #fff; border: none; border-radius: 8px; padding: 10px 16px; font-weight: 600; cursor: pointer; }
.login-md3 .md-btn-primary:hover { background: #0f5aa1; }
.login-md3 .md-link { color: #136bbe; text-decoration: none; font-size: 13px; }
.login-md3 .md-link:hover { text-decoration: underline; }
.login-md3 .md-helper { margin-top: 10px; font-size: 12px; color: #6b7280; }

/* Login page layout fixes */
.wrapper.login-md3 { display: block !important; padding: 30px 40px !important; max-width: 900px !important; min-height: 450px !important; }
.wrapper.login-md3 #tert_nav { display: none !important; } /* Hide old sidebar nav */
.wrapper.login-md3 .column.whole { width: 100% !important; padding: 0 0 20px 0 !important; float: none !important; }
.wrapper.login-md3 .column.whole h1 { font-size: 28px !important; font-weight: 600 !important; color: #1f2937 !important; margin-bottom: 8px !important; }
.wrapper.login-md3 .column.whole h6 { font-size: 14px !important; font-weight: 400 !important; color: #6b7280 !important; margin-bottom: 16px !important; }
.wrapper.login-md3 .login-row { display: flex !important; gap: 40px !important; align-items: flex-start !important; }
.wrapper.login-md3 .login-row .column.half { width: 380px !important; padding: 0 !important; float: none !important; flex-shrink: 0 !important; }
.wrapper.login-md3 .login-row .column.thin { width: 280px !important; flex-shrink: 0 !important; padding: 24px !important; float: none !important; background: linear-gradient(135deg, #e8f4fc 0%, #f0f7ff 100%) !important; border-radius: 16px !important; border: 1px solid #d0e3f5 !important; }
.wrapper.login-md3 .login-row .column.thin h2 { font-size: 18px !important; font-weight: 600 !important; color: #1f2937 !important; margin-bottom: 10px !important; }
.wrapper.login-md3 .login-row .column.thin h2 a { color: #136bbe !important; text-decoration: none !important; }
.wrapper.login-md3 .login-row .column.thin h2 a:hover { text-decoration: underline !important; }
.wrapper.login-md3 .login-row .column.thin p { font-size: 14px !important; color: #4b5563 !important; line-height: 1.6 !important; margin-bottom: 16px !important; }
.wrapper.login-md3 .login-row .column.thin .badge { display: inline-block !important; background: #136bbe !important; color: #fff !important; font-size: 11px !important; font-weight: 600 !important; padding: 4px 10px !important; border-radius: 4px !important; margin-bottom: 12px !important; }
.wrapper.login-md3 .clear { display: none !important; }

/* ============================================================================
   Search v1 MD3 Styles (copied from search_v1.asp)
   ============================================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* Material Design Variables - EC Brand Colors */
:root {
  --md-primary: #136bbe;
  --md-primary-dark: #246ab3;
  --md-primary-light: #E7EBF2;
  --md-accent: #a4c43c;
  --md-success: #a4c43c;
  --md-success-light: #f0f5e6;
  --md-success-text: #5a6f20;
  --md-surface: #FFFFFF;
  --md-background: #FAFAFA;
  --md-error: #CF6679;
  --md-on-surface: #212121;
  --md-on-surface-variant: #757575;
  --md-elevation-1: 0px 2px 1px -1px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 1px 3px 0px rgba(0,0,0,0.12);
  --md-elevation-2: 0px 3px 1px -2px rgba(0,0,0,0.2), 0px 2px 2px 0px rgba(0,0,0,0.14), 0px 1px 5px 0px rgba(0,0,0,0.12);
  --md-elevation-4: 0px 2px 4px -1px rgba(0,0,0,0.2), 0px 4px 5px 0px rgba(0,0,0,0.14), 0px 1px 10px 0px rgba(0,0,0,0.12);
}

body { 
  font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Segoe UI", Arial, sans-serif; 
  background: var(--md-background); 
  padding: 24px;
  color: var(--md-on-surface);
}

.container { max-width: 1200px; margin: 0 auto; }

/* Header Styles - Enhanced */
.header { 
  background: linear-gradient(135deg, rgba(19, 107, 190, 0.98) 0%, rgba(36, 106, 179, 0.98) 100%);
  color: white;
  padding: 48px 32px !important;
  border-radius: 0 !important;
  margin-bottom: 32px !important;
  box-shadow: 0 8px 32px rgba(19, 107, 190, 0.3) !important;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--md-accent), #136bbe, var(--md-accent));
  z-index: 1;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  width: 200px;
  height: auto;
}

.header-text {
  flex: 1;
}

.header-text h1 { 
  color: white !important;
  margin-bottom: 8px !important;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.header-text p { 
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 15px;
  margin: 0 !important;
}

.search-container {
  margin-top: 24px;
}

.search-box { 
  display: flex; 
  gap: 12px; 
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-icon {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.search-box input { 
  flex: 1; 
  padding: 14px 16px; 
  border: none;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--md-on-surface);
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(164, 196, 60, 0.3);
}

.search-box input::placeholder {
  color: #999;
}

.search-box button { 
  padding: 14px 32px; 
  background: var(--md-accent); 
  color: var(--md-primary-dark); 
  border: none; 
  border-radius: 8px; 
  cursor: pointer; 
  font-size: 16px; 
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(164, 196, 60, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.search-box button:hover { 
  background: #c9d94f;
  box-shadow: 0 6px 16px rgba(164, 196, 60, 0.4);
  transform: translateY(-2px);
}

.search-box button:active {
  transform: translateY(0);
}

.header-footer {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.clear-filters { 
  display: inline-block; 
  padding: 10px 20px; 
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px; 
  font-size: 13px; 
  color: white; 
  text-decoration: none;
  transition: all 0.2s ease;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.clear-filters:hover { 
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.search-box button:active {
  transform: translateY(1px);
  box-shadow: var(--md-elevation-2);
}

.content { 
  display: grid; 
  grid-template-columns: 280px 1fr; 
  gap: 24px;
}

.sidebar {
  background: var(--md-surface);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--md-elevation-1);
  height: fit-content;
  position: sticky;
  top: 24px;
}

.sidebar h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--md-primary);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--md-on-surface-variant);
  margin-bottom: 8px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  background: white;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--md-primary);
  box-shadow: 0 0 0 3px rgba(19, 107, 190, 0.1);
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.result-card {
  background: var(--md-surface);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--md-elevation-1);
  border: 1px solid #f0f0f0;
  transition: all 0.2s ease;
}

.result-card:hover {
  box-shadow: var(--md-elevation-2);
  transform: translateY(-2px);
}

.result-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--md-primary);
  margin-bottom: 6px;
}

.result-company {
  font-size: 14px;
  color: var(--md-on-surface-variant);
  margin-bottom: 12px;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.result-chip {
  background: var(--md-primary-light);
  color: var(--md-primary);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 500;
}

.result-description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 12px;
}

.result-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-button {
  background: var(--md-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.apply-button:hover {
  background: var(--md-primary-dark);
}

.result-date {
  font-size: 12px;
  color: var(--md-on-surface-variant);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.pagination a {
  padding: 8px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  text-decoration: none;
  color: var(--md-primary);
  background: white;
  font-size: 14px;
}

.pagination a.active {
  background: var(--md-primary);
  color: white;
  border-color: var(--md-primary);
}

.summary {
  font-size: 13px;
  color: var(--md-on-surface-variant);
  margin-bottom: 16px;
}

.recommended {
  background: var(--md-success-light);
  border-left: 4px solid var(--md-success);
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.recommended h4 {
  color: var(--md-success-text);
  margin-bottom: 8px;
}

.recommended a {
  color: var(--md-success-text);
  text-decoration: underline;
}

.footer {
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
  color: var(--md-on-surface-variant);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--md-accent);
  color: var(--md-primary-dark);
  transform: scale(1.1);
}

/* Header Enhancement */
.header {
  background: linear-gradient(135deg, rgba(19, 107, 190, 0.95) 0%, rgba(36, 106, 179, 0.95) 100%);
  color: white;
}

.header h1 {
  color: white;
}

.header p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--md-accent), #136bbe, var(--md-accent));
}

.header {
  position: relative;
}
