/* Unified Report Filter Styles */
.report-filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eef0f7;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.filter-label {
    width: 140px;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    flex-shrink: 0;
}

.filter-input {
    flex-grow: 1;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.filter-input:focus {
    border-color: #0B3D91;
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
    outline: none;
}

.filter-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.btn-filter {
    background-color: #0B3D91;
    color: #fff;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 8px;
    border: none;
    transition: all 0.2s;
}

.btn-filter:hover {
    background-color: #082f73;
    color: #fff;
    transform: translateY(-1px);
}

.btn-reset {
    background-color: #6c757d;
    color: #fff;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-reset:hover {
    background-color: #5a6268;
    color: #fff;
    transform: translateY(-1px);
}

/* Date Range specific */
.date-range-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.date-range-container .filter-input {
    width: 100%;
}

.date-separator {
    font-weight: 600;
    color: #6b7280;
}

/* Responsiveness */
@media (max-width: 768px) {
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .filter-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .filter-input {
        width: 100%;
    }

    .date-range-container {
        flex-direction: column;
        width: 100%;
    }

    .date-separator {
        align-self: center;
        padding: 5px 0;
    }

    .filter-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-filter, .btn-reset {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}
