/* ========================================
   ACADEMIA 5 - SISTEMA DE TESTS
   CSS PRINCIPAL
   ======================================== */

/* Importar todos los archivos CSS */
@import url('main.css');
@import url('components.css');
@import url('utilities.css');

/* ========================================
   ESTILOS ESPECÍFICOS DE LA APLICACIÓN
   ======================================== */

/* Logo personalizado */
.logo-academia5 {
    height: 95px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo-academia5:hover {
    transform: scale(1.05);
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    margin-bottom: var(--spacing-xl);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

/* Dashboard cards */
.dashboard-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--input-border-color);
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.dashboard-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-md);
}

.dashboard-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.dashboard-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Stats cards */
.stats-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
    color: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.stats-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: var(--spacing-lg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.feature-description {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.6;
}

/* Test progress indicator */
.test-progress-indicator {
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    height: 4px;
    border-radius: 2px;
    transition: width 0.3s ease;
    margin: var(--spacing-md) 0;
}

/* Question navigation */
.question-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--card-background-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.question-nav-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.question-nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.question-nav-btn:disabled {
    background: var(--input-border-color);
    cursor: not-allowed;
    transform: none;
}

/* Timer display */
.timer-display {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
}

.timer-warning {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Result summary */
.result-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.result-score-large {
    font-size: 4rem;
    font-weight: 700;
    margin: var(--spacing-lg) 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.result-message {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

/* Competency grid */
.competency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.competency-item {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--input-border-color);
}

.competency-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.competency-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.competency-emoji {
    font-size: 2rem;
    margin-right: var(--spacing-md);
}

.competency-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.competency-level {
    background: var(--success-color);
    color: white;
    padding: 0.2em 0.6em;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: auto;
}

/* Filter buttons */
.filter-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-background-color);
    border: 2px solid var(--input-border-color);
    color: var(--text-color);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-lg);
    font-weight: 500;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* Search input */
.search-container {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    padding-left: 3rem;
    border: 2px solid var(--input-border-color);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: var(--card-background-color);
    color: var(--text-color);
}

.search-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.6;
}

/* Loading states */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-content {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

/* Empty states */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-color);
    opacity: 0.7;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

.empty-state-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.empty-state-description {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .dashboard-card {
        padding: var(--spacing-md);
    }
    
    .stats-number {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .result-score-large {
        font-size: 3rem;
    }
    
    .competency-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .question-nav {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* ========================================
   ESTILOS ADICIONALES GENERADOS AUTOMÁTICAMENTE
   ======================================== */

/* Logo height */
.logo-height {
    height: 150px !important;
}

/* Emoji size */
.emoji-size {
    font-size: 1.5em !important;
}

/* Progress height */
.progress-height {
    height: 25px !important;
}

/* Progress widths */
.progress-width-25 { width: 25% !important; }
.progress-width-30 { width: 30% !important; }
.progress-width-40 { width: 40% !important; }
.progress-width-50 { width: 50% !important; }
.progress-width-60 { width: 60% !important; }
.progress-width-70 { width: 70% !important; }
.progress-width-80 { width: 80% !important; }
.progress-width-90 { width: 90% !important; }
.progress-width-100 { width: 100% !important; }

/* Transform classes */
.scale-hover {
    transform: scale(1.02) !important;
}

.translate-up {
    transform: translateY(-1px) !important;
}

.translate-reset {
    transform: translateY(0) !important;
}

/* Border colors */
.border-accent {
    border-color: var(--accent-color) !important;
}

.border-light {
    border-color: var(--input-border-color) !important;
}

/* Animation delays */
.animation-delay-1 { animation-delay: 0.1s !important; }
.animation-delay-2 { animation-delay: 0.2s !important; }
.animation-delay-3 { animation-delay: 0.3s !important; }
.animation-delay-4 { animation-delay: 0.4s !important; }
.animation-delay-5 { animation-delay: 0.5s !important; }

/* Word break */
.word-break-all {
    word-break: break-all !important;
}

/* Background colors */
.bg-light-gray {
    background: #f8f9fa !important;
}

/* Font sizes */
.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-24 { font-size: 24px !important; }
.fs-28 { font-size: 28px !important; }
.fs-32 { font-size: 32px !important; }

/* Line heights */
.lh-1 { line-height: 1 !important; }
.lh-1-2 { line-height: 1.2 !important; }
.lh-1-4 { line-height: 1.4 !important; }
.lh-1-6 { line-height: 1.6 !important; }
.lh-1-8 { line-height: 1.8 !important; }
.lh-2 { line-height: 2 !important; }

/* Z-index utilities */
.z-1000 { z-index: 1000 !important; }
.z-1050 { z-index: 1050 !important; }
.z-1055 { z-index: 1055 !important; }
.z-9999 { z-index: 9999 !important; }

/* Min width */
.min-w-300 {
    min-width: 300px !important;
}

/* Max width */
.max-w-100 {
    max-width: 100% !important;
}

/* Width utilities */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height utilities */
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* ========================================
   ESTILOS ADICIONALES GENERADOS AUTOMÁTICAMENTE
   ======================================== */

/* Logo height */
.logo-height {
    height: 150px !important;
}

/* Emoji size */
.emoji-size {
    font-size: 1.5em !important;
}

/* Progress height */
.progress-height {
    height: 25px !important;
}

/* Progress widths */
.progress-width-25 { width: 25% !important; }
.progress-width-30 { width: 30% !important; }
.progress-width-40 { width: 40% !important; }
.progress-width-50 { width: 50% !important; }
.progress-width-60 { width: 60% !important; }
.progress-width-70 { width: 70% !important; }
.progress-width-80 { width: 80% !important; }
.progress-width-90 { width: 90% !important; }
.progress-width-100 { width: 100% !important; }

/* Transform classes */
.scale-hover {
    transform: scale(1.02) !important;
}

.translate-up {
    transform: translateY(-1px) !important;
}

.translate-reset {
    transform: translateY(0) !important;
}

/* Border colors */
.border-accent {
    border-color: var(--accent-color) !important;
}

.border-light {
    border-color: var(--input-border-color) !important;
}

/* Animation delays */
.animation-delay-1 { animation-delay: 0.1s !important; }
.animation-delay-2 { animation-delay: 0.2s !important; }
.animation-delay-3 { animation-delay: 0.3s !important; }
.animation-delay-4 { animation-delay: 0.4s !important; }
.animation-delay-5 { animation-delay: 0.5s !important; }

/* Word break */
.word-break-all {
    word-break: break-all !important;
}

/* Background colors */
.bg-light-gray {
    background: #f8f9fa !important;
}

/* Font sizes */
.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-24 { font-size: 24px !important; }
.fs-28 { font-size: 28px !important; }
.fs-32 { font-size: 32px !important; }

/* Line heights */
.lh-1 { line-height: 1 !important; }
.lh-1-2 { line-height: 1.2 !important; }
.lh-1-4 { line-height: 1.4 !important; }
.lh-1-6 { line-height: 1.6 !important; }
.lh-1-8 { line-height: 1.8 !important; }
.lh-2 { line-height: 2 !important; }

/* Z-index utilities */
.z-1000 { z-index: 1000 !important; }
.z-1050 { z-index: 1050 !important; }
.z-1055 { z-index: 1055 !important; }
.z-9999 { z-index: 9999 !important; }

/* Min width */
.min-w-300 {
    min-width: 300px !important;
}

/* Max width */
.max-w-100 {
    max-width: 100% !important;
}

/* Width utilities */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height utilities */
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* ========================================
   ESTILOS ADICIONALES GENERADOS AUTOMÁTICAMENTE
   ======================================== */

/* Logo height */
.logo-height {
    height: 150px !important;
}

/* Emoji size */
.emoji-size {
    font-size: 1.5em !important;
}

/* Progress heights */
.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

/* Progress widths */
.progress-width-25 { width: 25% !important; }
.progress-width-30 { width: 30% !important; }
.progress-width-40 { width: 40% !important; }
.progress-width-50 { width: 50% !important; }
.progress-width-60 { width: 60% !important; }
.progress-width-70 { width: 70% !important; }
.progress-width-80 { width: 80% !important; }
.progress-width-90 { width: 90% !important; }
.progress-width-100 { width: 100% !important; }

/* Transform classes */
.scale-hover {
    transform: scale(1.02) !important;
}

.translate-up {
    transform: translateY(-1px) !important;
}

/* Width and height utilities */
.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

/* Background utilities */
.bg-white {
    background: #fff !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

/* Cursor utilities */
.cursor-grab {
    cursor: grab !important;
}

/* Display utilities */
.d-inline {
    display: inline !important;
}

/* Margin utilities */
.mr-03 {
    margin-right: 0.3em !important;
}

.translate-reset {
    transform: translateY(0) !important;
}

/* Border colors */
.border-accent {
    border-color: var(--accent-color) !important;
}

.border-light {
    border-color: var(--input-border-color) !important;
}

/* Animation delays */
.animation-delay-1 { animation-delay: 0.1s !important; }
.animation-delay-2 { animation-delay: 0.2s !important; }
.animation-delay-3 { animation-delay: 0.3s !important; }
.animation-delay-4 { animation-delay: 0.4s !important; }
.animation-delay-5 { animation-delay: 0.5s !important; }

/* Word break */
.word-break-all {
    word-break: break-all !important;
}

/* Background colors */
.bg-light-gray {
    background: #f8f9fa !important;
}

/* Font sizes */
.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-24 { font-size: 24px !important; }
.fs-28 { font-size: 28px !important; }
.fs-32 { font-size: 32px !important; }

/* Line heights */
.lh-1 { line-height: 1 !important; }
.lh-1-2 { line-height: 1.2 !important; }
.lh-1-4 { line-height: 1.4 !important; }
.lh-1-6 { line-height: 1.6 !important; }
.lh-1-8 { line-height: 1.8 !important; }
.lh-2 { line-height: 2 !important; }

/* Z-index utilities */
.z-1000 { z-index: 1000 !important; }
.z-1050 { z-index: 1050 !important; }
.z-1055 { z-index: 1055 !important; }
.z-9999 { z-index: 9999 !important; }

/* Min width */
.min-w-300 {
    min-width: 300px !important;
}

/* Max width */
.max-w-100 {
    max-width: 100% !important;
}

/* Width utilities */
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height utilities */
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* ========================================
   ESTILOS ADICIONALES GENERADOS AUTOMÁTICAMENTE V2.0
   ======================================== */

/* Progress widths dinámicos */
.progress-width-dynamic {
    width: var(--progress-width, 0%) !important;
}

/* Clases adicionales para estilos específicos */
.logo-height {
    height: 150px !important;
}

.emoji-size {
    font-size: 1.5em !important;
}

.align-middle {
    vertical-align: middle !important;
}

.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

.bg-white {
    background: #fff !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.cursor-grab {
    cursor: grab !important;
}

.d-inline {
    display: inline !important;
}

.mr-03 {
    margin-right: 0.3em !important;
}

/* Progress widths específicos */
.progress-width-25 { width: 25% !important; }
.progress-width-30 { width: 30% !important; }
.progress-width-40 { width: 40% !important; }
.progress-width-50 { width: 50% !important; }
.progress-width-60 { width: 60% !important; }
.progress-width-70 { width: 70% !important; }
.progress-width-80 { width: 80% !important; }
.progress-width-90 { width: 90% !important; }
.progress-width-100 { width: 100% !important; }

/* ========================================
   ESTILOS ADICIONALES GENERADOS AUTOMÁTICAMENTE V2.0
   ======================================== */

/* Progress widths dinámicos */
.progress-width-dynamic {
    width: var(--progress-width, 0%) !important;
}

/* Clases adicionales para estilos específicos */
.logo-height {
    height: 150px !important;
}

.emoji-size {
    font-size: 1.5em !important;
}

.align-middle {
    vertical-align: middle !important;
}

.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

.bg-white {
    background: #fff !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.cursor-grab {
    cursor: grab !important;
}

.d-inline {
    display: inline !important;
}

.mr-03 {
    margin-right: 0.3em !important;
}

/* Progress widths específicos */
.progress-width-25 { width: 25% !important; }
.progress-width-30 { width: 30% !important; }
.progress-width-40 { width: 40% !important; }
.progress-width-50 { width: 50% !important; }
.progress-width-60 { width: 60% !important; }
.progress-width-70 { width: 70% !important; }
.progress-width-80 { width: 80% !important; }
.progress-width-90 { width: 90% !important; }
.progress-width-100 { width: 100% !important; }

/* ========================================
   ESTILOS ADICIONALES PARA CLASES GENERADAS
   ======================================== */

.logo-height {
    height: 150px !important;
}

.emoji-size {
    font-size: 1.5em !important;
}

.align-middle {
    vertical-align: middle !important;
}

.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

.bg-white {
    background: #fff !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.d-inline {
    display: inline !important;
}

.d-none {
    display: none !important;
}

/* ========================================
   ESTILOS ADICIONALES PARA CLASES GENERADAS
   ======================================== */

.logo-height {
    height: 150px !important;
}

.emoji-size {
    font-size: 1.5em !important;
}

.align-middle {
    vertical-align: middle !important;
}

.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

.bg-white {
    background: #fff !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.d-inline {
    display: inline !important;
}

.d-none {
    display: none !important;
}

/* ========================================
   ESTILOS ADICIONALES PARA CLASES GENERADAS MANUALMENTE
   ======================================== */

.logo-height {
    height: 150px !important;
}

.emoji-size {
    font-size: 1.5em !important;
}

.align-middle {
    vertical-align: middle !important;
}

.mr-03 {
    margin-right: 0.3em !important;
}

.progress-height {
    height: 25px !important;
}

.progress-height-30 {
    height: 30px !important;
}

.progress-height-20 {
    height: 20px !important;
}

.w-auto {
    width: auto !important;
}

.max-w-250 {
    max-width: 250px !important;
}

.max-w-180 {
    max-width: 180px !important;
}

.max-w-70 {
    max-width: 70px !important;
}

.min-h-150 {
    min-height: 150px !important;
}

.bg-white {
    background: #fff !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-grab {
    cursor: grab !important;
}

.d-inline {
    display: inline !important;
}

.d-none {
    display: none !important;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}

.transition {
    transition: all 0.3s ease !important;
}

/* ========================================
   ESTILOS PARA WIDTHS DINÁMICOS
   ======================================== */

.progress-width-dynamic {
    width: 0% !important;
    transition: width 0.5s ease-in-out !important;
}

/* JavaScript para aplicar widths dinámicos */
