body { font-family: 'Inter', sans-serif; }
.pac-container { z-index: 1050 !important; }
@media (min-width: 1024px) { .sticky-sidebar { position: sticky; top: 2rem; } }

.tab-btn {
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease-in-out;
    padding: 0.75rem 0.25rem;
    font-size: 1.125rem;
    color: #6b7280; /* gray-500 */
}
.tab-btn:hover {
    border-bottom-color: #9ca3af; /* gray-400 */
    color: #374151; /* gray-700 */
}
.tab-btn.active {
    border-bottom-color: #3b82f6; /* blue-500 */
    color: #3b82f6;
    font-weight: 600;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.charge-btn {
    padding: 8px 16px;
    border: 1px solid #d1d5db; /* gray-300 */
    border-radius: 8px;
    background-color: white;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.charge-btn:hover {
    background-color: #f3f4f6; /* gray-100 */
    border-color: #9ca3af; /* gray-400 */
}
.charge-btn.active {
    background-color: #3b82f6; /* blue-500 */
    color: white;
    border-color: #3b82f6; /* blue-500 */
    font-weight: 600;
}
.product-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.order-card-delivered {
    background-color: #f9fafb; /* gray-50 */
    opacity: 0.8;
    transition: background-color 0.3s, opacity 0.3s;
}

/* Admin Tabs */
.admin-tab-btn {
    border-bottom: 2px solid transparent;
    color: #6b7280; /* gray-500 */
    transition: all 0.2s;
}
.admin-tab-btn:hover {
    border-color: #d1d5db; /* gray-300 */
    color: #111827; /* gray-900 */
}
.admin-tab-btn.active {
    border-color: #3b82f6; /* blue-500 */
    color: #3b82f6;
}
.admin-tab-content {
    display: none;
}
.admin-tab-content.active {
    display: block;
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }
    header, nav, #content-register, #content-details, #content-admin, #generateReportBtn, .container > div:nth-child(2), #toast, #whatsappModal {
        display: none !important;
    }
    #content-reports, #content-reports.active {
        display: block !important;
    }
    #content-reports .bg-white {
        box-shadow: none !important;
        padding: 0 !important;
    }
    #reportSummary {
        margin-bottom: 20px;
    }
    #reportTableBody tr {
        page-break-inside: avoid;
    }
    .container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    button, select, input {
        display: none !important;
    }
    /* Show summary and table */
    #reportSummary, #reportTableContainer, table {
        display: table !important; /* Ensure table structure is kept */
        width: 100% !important;
    }
    #reportSummary {
        display: grid !important; /* Keep grid for summary */
    }
    /* Hide filters but keep the report title if desired, or hide everything above report */
}
