/* Partner Dashboard Styling */

/* Side-by-side tables in quarterly tabs */
.md-typeset .tabbed-content .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

@media (max-width: 768px) {
    .md-typeset .tabbed-content .grid {
        grid-template-columns: 1fr;
    }
}

/* Table styling */
.md-typeset table:not([class]) {
    font-size: 0.85rem;
    border-collapse: collapse;
    width: 100%;
}

.md-typeset table:not([class]) th {
    background: var(--md-primary-fg-color);
    color: white;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

.md-typeset table:not([class]) td {
    padding: 0.4rem 0.75rem;
    border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.md-typeset table:not([class]) tr:hover {
    background: var(--md-default-fg-color--lightest);
}

/* Status indicators */
.md-typeset table td:last-child {
    text-align: center;
}

/* Print styles */
@media print {
    .md-header, .md-sidebar, .md-footer, .no-print {
        display: none !important;
    }
    
    .md-content {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .md-typeset h1, .md-typeset h2, .md-typeset h3 {
        page-break-after: avoid;
    }
    
    .md-typeset table {
        page-break-inside: avoid;
    }
    
    .print-footer {
        display: block !important;
    }
}

@media screen {
    .print-footer {
        display: none;
    }
}

/* Grid cards for navigation */
.md-typeset .grid.cards > ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    padding: 0;
    list-style: none;
}

.md-typeset .grid.cards > ul > li {
    border: 1px solid var(--md-default-fg-color--lightest);
    border-radius: 0.25rem;
    padding: 0.75rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.md-typeset .grid.cards > ul > li:hover {
    border-color: var(--md-primary-fg-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Admonition icons */
.md-typeset .admonition.success,
.md-typeset details.success {
    border-color: #4caf50;
}

.md-typeset .admonition.success > .admonition-title,
.md-typeset details.success > summary {
    background-color: rgba(76, 175, 80, 0.1);
}

/* Expandable sections styling */
.md-typeset details {
    margin: 1em 0;
}

.md-typeset details summary {
    cursor: pointer;
    font-weight: 600;
}

/* Highlight peak hours */
.md-typeset table tr td strong {
    color: var(--md-primary-fg-color);
}
