/* ==========================================================================
   Main Application Stylesheet - AgroFumigación
   ========================================================================== */

:root {
    --primary-forest: #065f46;
    --primary-forest-light: #047857;
    --primary-forest-dark: #064e3b;
    --secondary-slate: #1e293b;
    --secondary-slate-light: #334155;
    --bg-light: #f8fafc;
    --card-border: #e2e8f0;
    --accent-gold: #d97706;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: #1e293b;
    font-size: 0.925rem;
    overflow-x: hidden;
}

/* Sidebar Wrapper */
#sidebar-wrapper {
    min-height: 100vh;
    width: 260px;
    margin-left: 0;
    transition: margin 0.25s ease-out;
    background-color: #0f172a !important;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: -260px;
}

.sidebar-heading {
    letter-spacing: 0.5px;
}

.sidebar-section-title {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: #64748b !important;
}

.list-group-item {
    font-size: 0.875rem;
    padding: 0.65rem 1.25rem;
    border: none;
    transition: all 0.2s ease-in-out;
}

.list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #38bdf8 !important;
}

.active-nav {
    background-color: rgba(16, 185, 129, 0.15) !important;
    color: #34d399 !important;
    border-left: 4px solid #10b981 !important;
    font-weight: 600;
}

/* Main Cards */
.card {
    border-radius: 0.5rem;
    border: 1px solid var(--card-border);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--card-border);
    font-weight: 600;
}

/* Stat Cards */
.stat-card {
    transition: transform 0.2s ease;
}
.stat-card:hover {
    transform: translateY(-2px);
}

/* Tables */
.table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #475569;
    background-color: #f1f5f9;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

/* Badges */
.badge-stage-veg {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-stage-prod {
    background-color: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

/* Product Mix Dynamic Grid */
.mix-item-row {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
}

/* Print Optimization */
@media print {
    #sidebar-wrapper,
    .navbar,
    .btn,
    .no-print,
    .alert {
        display: none !important;
    }

    #page-content-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }

    body {
        background-color: #ffffff !important;
        color: #000000 !important;
        font-size: 11pt !important;
    }

    .card {
        border: none !important;
        box-shadow: none !important;
    }

    .printable-order {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .table {
        border: 1px solid #000 !important;
        width: 100% !important;
    }

    .table th, .table td {
        border: 1px solid #000 !important;
        padding: 4px 6px !important;
        color: #000 !important;
        background-color: transparent !important;
    }

    .table th {
        background-color: #eee !important;
    }

    .order-signature-box {
        page-break-inside: avoid;
    }

    @page {
        margin: 1cm;
        size: landscape;
    }
}
