/* TIMONEL - Guía Didáctica de Simulacro de Evacuación */
/* Estilos CSS Premium - Centrado en el Cuidado Infantil y Gestión de Riesgos */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Paleta de Colores Inspirada en el Mar (Timonel) y la Seguridad Infantil */
    --primary: #1e40af;       /* Azul Marino Profundo (Confianza) */
    --primary-light: #3b82f6; /* Azul Cielo Activo */
    --primary-bg: #eff6ff;   /* Fondo Azul Suave */
    --accent: #f97316;        /* Naranja Alerta (Evacuación) */
    --accent-light: #ffedd5;  /* Fondo Naranja Suave */
    --success: #10b981;       /* Verde Seguridad */
    --success-light: #d1fae5;
    --danger: #ef4444;        /* Rojo Alerta (Fuego) */
    --danger-light: #fee2e2;
    --warning: #f59e0b;       /* Amarillo Advertencia */
    --warning-light: #fef3c7;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Tipografía */
    --font-heading: 'Fredoka', cursive;
    --font-body: 'Outfit', sans-serif;
    
    /* Sombras y Bordes */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f0f4f8;
    color: var(--gray-800);
    line-height: 1.6;
    padding: 20px 10px;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    body {
        padding: 40px 20px;
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Encabezado Principal */
header {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 30px;
}

header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        padding: 10px 20px;
    }
}

.header-logo-container {
    background: var(--white);
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    transition: transform 0.3s ease;
}

.header-logo-container:hover {
    transform: rotate(5deg) scale(1.05);
}

.header-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.header-info {
    flex: 1;
    margin-left: 0;
}

@media (min-width: 768px) {
    .header-info {
        margin-left: 30px;
    }
}

.badge-simulacro {
    background-color: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    margin-bottom: 12px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 4px 18px rgba(249, 115, 22, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    }
}

.header-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.header-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.95;
}

.header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
    justify-content: center;
}

@media (min-width: 768px) {
    .header-meta {
        justify-content: flex-start;
    }
}

.meta-pill {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

/* Grid de Información Principal */
.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tarjetas Informativas Generales */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.card-title-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 12px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gray-900);
    font-weight: 600;
}

/* Estilos de Iconos Específicos */
.icon-blue { background-color: var(--primary-bg); color: var(--primary); }
.icon-orange { background-color: var(--accent-light); color: var(--accent); }
.icon-green { background-color: var(--success-light); color: var(--success); }
.icon-red { background-color: var(--danger-light); color: var(--danger); }
.icon-yellow { background-color: var(--warning-light); color: var(--warning); }

/* Fila de Datos Rápidos (Timeline / Cronograma) */
.timeline {
    position: relative;
    padding-left: 24px;
    border-left: 3px dashed var(--gray-200);
    margin-left: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary-light);
    z-index: 2;
}

.timeline-item.active .timeline-dot {
    border-color: var(--accent);
    background-color: var(--white);
    transform: scale(1.2);
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.timeline-item.active .timeline-time {
    color: var(--accent);
}

.timeline-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gray-900);
}

.timeline-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Tarjeta del Mapa Metodológico (Didáctico) */
.map-illustration {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px dashed var(--primary-light);
    margin-top: 15px;
    position: relative;
}

.map-slope-indicator {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-point {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.map-point-icon {
    font-size: 1.4rem;
    line-height: 1;
}

.map-point-text {
    flex: 1;
}

.map-point-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.map-point-subtitle {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.map-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4px 0;
}

.map-arrow-line {
    width: 4px;
    height: 40px;
    background-color: var(--accent);
    position: relative;
    border-radius: 2px;
}

.map-arrow-line::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--accent);
}

.map-arrow-label {
    background-color: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.water-flow-warning {
    background-color: var(--danger-light);
    border: 1px solid #fca5a5;
    border-radius: var(--radius-sm);
    padding: 10px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #991b1b;
}

/* Sección de Brigadas */
.brigades-section {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.brigades-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
}

@media (min-width: 600px) {
    .brigades-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.brigade-card {
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brigade-card:hover {
    transform: scale(1.03);
}

.brigade-card.primero-auxilio {
    background-color: var(--gray-50);
    border-color: var(--gray-200);
}

.brigade-card.contra-incendio {
    background-color: #fee2e2;
    border-color: #fca5a5;
}

.brigade-card.evacuacion {
    background-color: #ffedd5;
    border-color: #fed7aa;
}

.brigade-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.primero-auxilio .brigade-title { color: var(--gray-800); }
.contra-incendio .brigade-title { color: #991b1b; }
.evacuacion .brigade-title { color: #9a3412; }

.armband-demo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 6px 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 12px;
    font-size: 0.85rem;
    font-weight: 700;
}

.armband-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
}

.primero-auxilio .armband-color { background-color: var(--white); }
.contra-incendio .armband-color { background-color: var(--danger); }
.evacuacion .armband-color { background-color: var(--accent); }

.brigade-role {
    font-size: 0.85rem;
    color: var(--gray-700);
    background-color: rgba(255, 255, 255, 0.6);
    padding: 6px;
    border-radius: var(--radius-sm);
}

/* Protocolo de Alertas Paso a Paso */
.alert-protocol-section {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.protocol-flow {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: relative;
}

@media (min-width: 768px) {
    .protocol-flow {
        flex-direction: row;
        align-items: stretch;
    }
}

.protocol-step {
    flex: 1;
    background-color: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.protocol-step:hover {
    background-color: var(--primary-bg);
    border-color: var(--primary-light);
}

.step-num {
    background-color: var(--primary);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.step-person {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-action {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.protocol-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-light);
    font-weight: bold;
}

@media (max-width: 767px) {
    .protocol-arrow {
        transform: rotate(90deg);
        padding: 5px 0;
    }
}

/* Panel de Elementos Clave y Tareas del Profesor */
.interactive-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .interactive-panel {
        grid-template-columns: 3fr 2fr;
    }
}

.checklist-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.checklist-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gray-900);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 10px;
}

.checklist-group {
    margin-bottom: 15px;
}

.checklist-group-title {
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.checklist-item:hover {
    background-color: var(--gray-50);
}

.checklist-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border: 2px solid var(--gray-600);
    border-radius: 4px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checklist-text {
    font-size: 0.92rem;
    color: var(--gray-700);
    flex: 1;
}

/* Tarjeta de Recordatorios Importantes */
.important-reminders-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    border: 1px solid #fde68a;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reminder-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.reminder-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.reminder-text {
    font-size: 0.9rem;
    color: var(--gray-800);
}

.reminder-text strong {
    color: #92400e;
}

/* Información de Víctimas y Soporte */
.victims-section {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.victims-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 15px;
}

@media (min-width: 600px) {
    .victims-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.victim-card {
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--gray-200);
    background-color: var(--gray-50);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.victim-avatar {
    font-size: 2.2rem;
    line-height: 1;
}

.victim-details {
    flex: 1;
}

.victim-role {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gray-900);
}

.victim-desc {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.victim-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--warning-light);
    color: #92400e;
    padding: 2px 8px;
    border-radius: 8px;
    margin-top: 6px;
}

/* Pie de Página e Información de Soporte */
.footer-support {
    background-color: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.footer-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--primary-light) 50%, var(--success) 100%);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--white);
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--gray-200);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.support-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
}

.contact-pill:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 1.1rem;
}

/* Botón de Impresión Flotante */
.btn-print-floating {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-print-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.6);
    background-color: #1d4ed8;
}

.btn-print-floating svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Estilos de Impresión Optimistas */
@media print {
    body {
        background-color: var(--white);
        padding: 0;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        margin: 0;
    }

    header {
        background: var(--white) !important;
        border: 2px solid var(--primary) !important;
        color: var(--gray-900) !important;
        box-shadow: none !important;
        margin-bottom: 20px;
        border-radius: var(--radius-md) !important;
        padding: 15px !important;
    }

    .badge-simulacro {
        background: var(--accent) !important;
        color: var(--white) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
        box-shadow: none !important;
    }

    .header-title {
        color: var(--primary) !important;
        text-shadow: none !important;
        font-size: 1.8rem !important;
    }

    .header-subtitle {
        color: var(--gray-700) !important;
    }

    .meta-pill {
        background: var(--gray-100) !important;
        border-color: var(--gray-300) !important;
        color: var(--gray-800) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid var(--gray-300) !important;
        page-break-inside: avoid;
        margin-bottom: 15px !important;
        background-color: var(--white) !important;
    }

    .timeline-dot {
        border-color: var(--primary) !important;
    }

    .map-illustration {
        background: var(--gray-50) !important;
        border-color: var(--gray-300) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .map-point {
        border: 1px solid var(--gray-200) !important;
    }

    .map-arrow-line {
        background-color: var(--accent) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .map-arrow-label {
        background-color: var(--accent) !important;
        color: var(--white) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .water-flow-warning {
        background-color: var(--gray-50) !important;
        border-color: var(--gray-300) !important;
        color: var(--gray-800) !important;
    }

    .brigade-card {
        box-shadow: none !important;
        background-color: var(--white) !important;
        border: 1px solid var(--gray-300) !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .primero-auxilio { border-color: var(--gray-400) !important; }
    .contra-incendio { border-color: var(--danger) !important; }
    .evacuacion { border-color: var(--accent) !important; }

    .armband-demo {
        border: 1px solid var(--gray-300) !important;
    }

    .protocol-step {
        background-color: var(--white) !important;
        border: 1px solid var(--gray-300) !important;
    }

    .important-reminders-card {
        background: var(--white) !important;
        border: 2px solid var(--warning) !important;
        color: var(--gray-900) !important;
    }

    .reminder-item {
        border: 1px solid var(--gray-300) !important;
        background-color: var(--white) !important;
    }

    .victim-card {
        background-color: var(--white) !important;
        border: 1px solid var(--gray-300) !important;
    }

    .footer-support {
        background: var(--white) !important;
        color: var(--gray-900) !important;
        border: 1px solid var(--gray-300) !important;
        page-break-inside: avoid;
    }

    .footer-support::before {
        display: none;
    }

    .footer-desc {
        color: var(--gray-700) !important;
    }

    .contact-pill {
        background: var(--gray-100) !important;
        color: var(--gray-800) !important;
        border: 1px solid var(--gray-300) !important;
    }

    .btn-print-floating {
        display: none !important;
    }
}
