/* ========================================
   LYRA EXPENSES - EXECUTIVE DARK THEME
   Premium Corporate Dashboard Design
   ======================================== */

/* === FILTROS QUE SÍ SE VEN - COLORES FORZADOS === */
select, input[type="date"], input[type="text"], input[type="email"], input[type="password"], input[type="number"] {
  background-color: white !important;
  color: black !important;
  border: 1px solid #ccc !important;
}

select option {
  background-color: white !important;
  color: black !important;
}

/* Filtros específicos de gastos */
#filter-company, #filter-user, #filter-status, #filter-currency, 
#filter-expense-type, #filter-date-from, #filter-date-to, #filter-payment-method {
  background-color: white !important;
  color: black !important;
  border: 2px solid #007bff !important;
  font-weight: 500 !important;
}

#filter-company option, #filter-user option, #filter-status option, 
#filter-currency option, #filter-expense-type option, #filter-payment-method option {
  background-color: white !important;
  color: black !important;
  padding: 8px !important;
}

/* === VARIABLES DE COLORES PREMIUM === */
:root {
  /* GRX Theme Base - Exact logo colors */
  --color-bg-primary: #0F1826;
  --color-bg-secondary: #0F1826;
  --color-bg-tertiary: #0F1826;
  --color-bg-quaternary: #0F1826;

  /* Glass Effects - Brighter blue to match logo */
  --color-glass-bg: rgba(109, 196, 245, 0.7);
  --color-glass-border: rgba(255, 255, 255, 1);
  --color-glass-hover: rgba(255, 255, 255, 0.9);

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #d0d8e0;
  --color-text-tertiary: #A8B4C0;
  --color-text-muted: #7a8694;

  /* Accent Colors - GRX Exact Palette */
  --color-accent-gold: #5BB4E5;
  --color-accent-gold-light: #6dc4f5;
  --color-accent-platinum: #A8B4C0;
  --color-accent-emerald: #10b981;
  --color-accent-sapphire: #5BB4E5;
  --color-accent-ruby: #ef4444;

  /* Gradient Accents - GRX Style */
  --gradient-primary: linear-gradient(135deg, #192431 0%, #243141 100%);
  --gradient-gold: linear-gradient(135deg, #5BB4E5 0%, #4a9fd0 100%);
  --gradient-blue: linear-gradient(135deg, #5BB4E5 0%, #4a9fd0 100%);
  --gradient-emerald: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --gradient-sapphire: linear-gradient(135deg, #5BB4E5 0%, #3a8ab8 100%);
  --gradient-ruby: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);

  /* Shadows */
  --shadow-soft: 0 2px 8px rgba(25, 36, 49, 0.4);
  --shadow-medium: 0 4px 16px rgba(25, 36, 49, 0.5);
  --shadow-hard: 0 8px 32px rgba(25, 36, 49, 0.6);
  --shadow-glow: 0 0 20px rgba(91, 180, 229, 0.35);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-display: 'Cal Sans', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* === BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 14px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === GLASS MORPHISM COMPONENTS === */
.glass-card {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(109, 196, 245, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(155, 226, 255, 0.8);
  border-color: rgba(180, 240, 255, 1);
  box-shadow: 0 12px 40px rgba(109, 196, 245, 0.6);
  transform: translateY(-2px);
}

.glass-panel {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(24px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(109, 196, 245, 0.5);
}

/* Glass effect for individual company pages */
.company-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 2px solid rgba(255, 255, 255, 1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* === PREMIUM BUTTONS === */
.btn-premium,
.premium-button {
  color: var(--color-text-primary);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-premium {
  background: var(--gradient-primary);
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-premium:hover::before,
.premium-button:hover::before {
  transform: translateX(100%);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-accent-gold);
}

/* Base hover para premium-button (sin colores específicos) */
.premium-button:not(.bg-green-600):not(.bg-red-600):not(.bg-blue-600):not(.bg-yellow-600):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-accent-gold);
}

.btn-gold {
  background: var(--gradient-gold);
}

.btn-emerald {
  background: var(--gradient-emerald);
}

.btn-sapphire {
  background: var(--gradient-sapphire);
}

.btn-ruby {
  background: var(--gradient-ruby);
}

/* === PREMIUM BUTTON COLORS (ESPECÍFICOS) === */
/* Verde - Autorizar */
.premium-button.bg-green-600 {
  background: #059669 !important;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

.premium-button.bg-green-600:hover,
.premium-button.bg-green-700:hover {
  background: #047857 !important;
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Rojo - Rechazar */
.premium-button.bg-red-600 {
  background: #dc2626 !important;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

.premium-button.bg-red-600:hover,
.premium-button.bg-red-700:hover {
  background: #b91c1c !important;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
}

/* Azul - Pedir Info */
.premium-button.bg-blue-600 {
  background: #2563eb !important;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.premium-button.bg-blue-600:hover,
.premium-button.bg-blue-700:hover {
  background: #1d4ed8 !important;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Amarillo - Dejar Pendiente */
.premium-button.bg-yellow-600 {
  background: #d97706 !important;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
}

.premium-button.bg-yellow-600:hover,
.premium-button.bg-yellow-700:hover {
  background: #b45309 !important;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* === METRIC CARDS PREMIUM === */
.metric-card-premium {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(20px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.metric-card-premium:hover::before {
  transform: scaleX(1);
}

.metric-card-premium:hover {
  background: rgba(155, 226, 255, 0.8);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(109, 196, 245, 0.6);
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.1;
}

.metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.metric-change {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}

/* === EXCHANGE RATES PREMIUM === */
.exchange-rate-card-premium {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(16px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.exchange-rate-card-premium:hover {
  background: rgba(155, 226, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(109, 196, 245, 0.6);
}

.currency-flag {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.exchange-rate-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.rate-positive {
  color: var(--color-accent-emerald);
}

.rate-negative {
  color: var(--color-accent-ruby);
}

/* === COMPANY CARDS PREMIUM === */
.company-card-premium {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(16px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.company-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.company-card-premium:hover::after {
  transform: scaleY(1);
}

.company-card-premium:hover {
  background: rgba(155, 226, 255, 0.8);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(109, 196, 245, 0.7);
}

/* === NAVIGATION PREMIUM === */
.nav-premium {
  background: var(--color-bg-secondary);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-glass-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

/* === GUSBIT BUTTONS (HEADER NAVIGATION) === */
.gusbit-button {
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700 !important;
  font-size: 22px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  color: #ffffff !important;
  text-shadow: 0 3px 15px rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
}

.gusbit-button:hover {
  background: var(--color-glass-bg);
  transform: translateY(-2px);
  color: #ffffff !important;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.9);
}

.gusbit-button.active {
  background: var(--color-glass-hover);
  color: var(--color-accent-gold) !important;
  box-shadow: var(--shadow-glow);
}

.nav-link {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 18px !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

.nav-link span {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.6);
}

.nav-link:hover {
  background: var(--color-glass-bg);
  transform: translateY(-1px);
  color: #ffffff !important;
}

.nav-link:hover span {
  color: #ffffff !important;
}

.nav-link.active,
.nav-link[aria-current="page"] {
  background: var(--color-glass-hover);
  color: var(--color-accent-gold) !important;
  box-shadow: var(--shadow-glow);
}

.nav-link.active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-badge {
  background: var(--color-accent-gold);
  color: var(--color-bg-primary);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === FORM CONTROLS PREMIUM === */
.form-input-premium {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.form-input-premium:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background: var(--color-glass-hover);
}

.form-input-premium::placeholder {
  color: var(--color-text-tertiary);
}

.form-input-premium select,
.form-input-premium option {
  background: var(--color-bg-secondary) !important;
  color: var(--color-text-primary) !important;
}

/* Specific styling for select dropdowns */
select.form-input-premium {
  background: var(--color-glass-bg) !important;
  color: var(--color-text-primary) !important;
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23f59e0b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-right: 44px;
}

select.form-input-premium:focus {
  outline: none;
  border-color: var(--color-accent-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
  background: var(--color-glass-hover);
}

select.form-input-premium option {
  background: var(--color-bg-secondary) !important;
  color: var(--color-text-primary) !important;
  padding: 8px 12px;
  border: none;
}

/* Additional browser-specific fixes for select styling */
select.form-input-premium::-ms-expand {
  display: none; /* Remove default arrow on IE */
}

/* Webkit browsers (Chrome, Safari, Edge) */
select.form-input-premium::-webkit-scrollbar {
  width: 8px;
}

select.form-input-premium::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

select.form-input-premium::-webkit-scrollbar-thumb {
  background: var(--color-accent-gold);
  border-radius: 4px;
}

select.form-input-premium::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-gold-light);
}

/* Firefox specific fixes */
@-moz-document url-prefix() {
  select.form-input-premium {
    color: var(--color-text-primary) !important;
    background-color: var(--color-bg-secondary) !important;
  }
  
  select.form-input-premium option {
    background-color: var(--color-bg-secondary) !important;
    color: var(--color-text-primary) !important;
  }
}

/* CRITICAL: Force text visibility for all analytics filter selects */
#analytics-user-filter,
#analytics-status-filter,
#analytics-company-filter,
#analytics-company-filter-main,
#analytics-currency-filter,
#analytics-currency-filter-main,
#analytics-period-filter-main,
#period-selector {
  background: #1a1d25 !important;
  background-color: #1a1d25 !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  -webkit-text-fill-color: #ffffff !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* CRITICAL: Force option text visibility */
#analytics-user-filter option,
#analytics-status-filter option,
#analytics-company-filter option,
#analytics-company-filter-main option,
#analytics-currency-filter option,
#analytics-currency-filter-main option,
#analytics-period-filter-main option,
#period-selector option {
  background: #12141a !important;
  background-color: #12141a !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding: 8px 12px !important;
}

/* CRITICAL: Focus states with visible text */
#analytics-user-filter:focus,
#analytics-status-filter:focus,
#analytics-company-filter:focus,
#analytics-company-filter-main:focus,
#analytics-currency-filter:focus,
#analytics-currency-filter-main:focus,
#analytics-period-filter-main:focus,
#period-selector:focus {
  background: #252932 !important;
  background-color: #252932 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  border-color: #f59e0b !important;
  outline: none !important;
}

/* Hover states for better UX */
#analytics-user-filter:hover,
#analytics-status-filter:hover,
#analytics-company-filter:hover,
#analytics-company-filter-main:hover,
#analytics-currency-filter:hover,
#analytics-currency-filter-main:hover,
#analytics-period-filter-main:hover,
#period-selector:hover {
  background: #252932 !important;
  background-color: #252932 !important;
  border-color: #f59e0b !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* ULTRA-SPECIFIC SELECTORS - LAST RESORT */
select[id="analytics-user-filter"],
select[id="analytics-user-filter-trend"],
select[id="analytics-status-filter"],
select[id="analytics-status-filter-chart"], 
select[id="analytics-company-filter"],
select[id="analytics-company-filter-main"],
select[id="analytics-currency-filter"],
select[id="analytics-currency-filter-main"],
select[id="analytics-period-filter-main"],
select[id="period-selector"] {
  background: #1a1d25 !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
}

select[id="analytics-user-filter"] option,
select[id="analytics-user-filter-trend"] option,
select[id="analytics-status-filter"] option,
select[id="analytics-status-filter-chart"] option,
select[id="analytics-company-filter"] option,
select[id="analytics-company-filter-main"] option,
select[id="analytics-currency-filter"] option,
select[id="analytics-currency-filter-main"] option,
select[id="analytics-period-filter-main"] option,
select[id="period-selector"] option {
  background: #12141a !important;
  color: white !important;
  -webkit-text-fill-color: white !important;
}

/* === MODAL PREMIUM === */
.modal-premium {
  background: var(--color-bg-secondary);
  backdrop-filter: blur(32px);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.modal-overlay, .modal-overlay-premium {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: rgba(109, 196, 245, 0.7);
  backdrop-filter: blur(24px);
  border: 3px solid rgba(255, 255, 255, 1);
  border-radius: 16px;
  padding: 2rem;
  width: 95%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(109, 196, 245, 0.5);
}

/* === EMPLOYEE FORM FIELDS === */
#employeeForm input[type="text"],
#employeeForm input[type="email"],
#employeeForm input[type="tel"],
#employeeForm input[type="url"],
#employeeForm input[type="date"],
#employeeForm input[type="password"],
#employeeForm select,
#employeeForm textarea {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #000000 !important;
}

#employeeForm input::placeholder,
#employeeForm textarea::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* === COMPANY MODAL FORM FIELDS === */
/* Labels del modal - doble de tamaño */
div#company-modal label {
  font-size: 28px !important;
}

/* Fondo blanco con texto negro */
div#company-modal input[type="text"],
div#company-modal input[type="email"],
div#company-modal input[type="tel"],
div#company-modal input[type="url"],
div#company-modal input[type="date"],
div#company-modal input[type="password"],
div#company-modal input[type="number"],
div#company-modal select,
div#company-modal textarea {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  font-weight: bold !important;
}

div#company-modal select option {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  font-weight: bold !important;
}

div#company-modal input::placeholder,
div#company-modal textarea::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
  font-weight: bold !important;
}

/* === ANIMATIONS === */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 158, 11, 0);
  }
}

.animate-slide-up {
  animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-scale {
  animation: fadeInScale 0.4s ease-out;
}

.animate-pulse-gold {
  animation: pulse-gold 2s infinite;
}

/* === STATUS BADGES PREMIUM === */
.status-badge-premium,
.status-badge {
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Estilos específicos por estatus (UNIFORME Dashboard + Gastos) */
.status-pending,
.status-badge.status-pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-approved,
.status-badge.status-approved {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-rejected,
.status-badge.status-rejected {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-accent-ruby);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.status-more_info,
.status-badge.status-more_info {
  background: rgba(147, 51, 234, 0.15);
  color: #a855f7;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

.status-reimbursed,
.status-badge.status-reimbursed {
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-accent-sapphire);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-invoiced,
.status-badge.status-invoiced {
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

/* Compatibilidad con estilos premium anteriores */
.status-pending-premium {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-approved-premium {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-rejected-premium {
  background: rgba(239, 68, 68, 0.15);
  color: var(--color-accent-ruby);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* === SCROLLBAR PREMIUM === */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-glass-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-gold);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .metric-card-premium {
    padding: 16px;
  }
  
  .metric-value {
    font-size: 24px;
  }
  
  .exchange-rate-card-premium {
    padding: 16px;
  }
  
  .company-card-premium {
    padding: 16px;
  }
}

/* === LOADING STATES === */
.loading-skeleton {
  background: linear-gradient(90deg, var(--color-bg-tertiary) 25%, var(--color-bg-quaternary) 50%, var(--color-bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: loading-shimmer 1.5s infinite;
}

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

/* === UTILITY CLASSES === */
.text-gold {
  color: var(--color-accent-gold);
}

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

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

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

.bg-glass {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
}

.gradient-text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === COMPANY CARDS HOVER EFFECTS === */
.company-card-premium.cursor-pointer:hover {
  cursor: pointer;
}

.company-card-premium .fas.fa-arrow-right {
  transition: transform 0.3s ease;
}

/* === MOBILE RESPONSIVE NAVIGATION === */
@media (max-width: 768px) {
  .nav-premium .flex.space-x-6 {
    display: none;
  }
  
  .nav-premium .flex.space-x-8 {
    flex-direction: column;
    space-x: 0;
    gap: 1rem;
  }
}