/* Estilos personalizados para FrutiControl de Equipos */
:root {
    --primary-green: #15803d;
    --primary-dark: #14532d;
    --accent-emerald: #10b981;
    --warning-amber: #d97706;
    --danger-red: #dc2626;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Scrollbar prominente y visible para la tabla de conciliación de tickets */
.reconcile-scroll-box {
    scrollbar-gutter: stable;
    overflow-y: scroll !important;
    overflow-x: auto !important;
}
.reconcile-scroll-box::-webkit-scrollbar {
    width: 10px !important;
    height: 10px !important;
}
.reconcile-scroll-box::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 6px !important;
}
.reconcile-scroll-box::-webkit-scrollbar-thumb {
    background: #64748b !important;
    border-radius: 6px !important;
    border: 2px solid #f1f5f9 !important;
}
.reconcile-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #334155 !important;
}

/* Print Styles for Executive Reports */
@media print {
    body {
        background: white !important;
        color: black !important;
        font-size: 11pt;
    }
    .no-print, nav, aside, header, #roleSwitcher, #notificationBell, .action-buttons {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
    .printable-report {
        box-shadow: none !important;
        border: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    table {
        width: 100% !important;
        border-collapse: collapse !important;
    }
    th, td {
        border: 1px solid #ddd !important;
        padding: 6px 8px !important;
    }
    th {
        background-color: #15803d !important;
        color: white !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

.card-hover {
    transition: all 0.2s ease-in-out;
}
.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.badge-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .6; }
}
