:root {
    --portal-primary: #0d6efd;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.page-header {
    margin-bottom: 1.5rem;
}

.filter-card .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--portal-primary);
}

.table-hover tbody tr {
    transition: background-color 0.15s ease;
}

.company-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.company-logo-lg {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6c757d;
    margin-bottom: 0.15rem;
}

.detail-value {
    font-weight: 500;
    word-break: break-word;
}

.stat-badge {
    font-size: 0.85rem;
}

.dashboard-stat-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dashboard-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

@media (max-width: 575.98px) {
    .page-header h1 {
        font-size: 1.5rem;
    }
}
