/* ===================================
   Qlabbir Reports Styling
   Application-customizable styles
   =================================== */

/* Report Group Navigation Buttons */
.report-group-nav {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.report-group-nav:hover:not(.active) {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

.report-group-nav.active {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #ffffff;
}

/* Report Category Section */
.report-category-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.375rem;
}

.report-category-label {
    display: flex;
    align-items: center;
}

.report-category-label .fa-folder {
    margin-right: 0.5rem;
    color: #6c757d;
}

.report-category-label span {
    font-weight: 600;
    color: #6c757d;
    font-size: 0.875rem;
}
