/* Custom styles for the application */

/* Add spacing between checkbox items */
.checkbox-group .form-check {
    margin-right: 10px;
}

/* Ensure checkboxes and labels are aligned */
.checkbox-group .form-check-input {
    margin-top: 0.3rem;
}

/* Add some padding to the main container */
.container-fluid {
    padding: 20px;
}

/* Style for section headers */
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Style for labels */
.fw-bold {
    font-size: 0.9rem;
}

/* Style for input fields */
.form-control {
    font-size: 0.9rem;
}

/* Style for the results table */
.dash-table-container {
    margin-top: 20px;
}

/* Style for the chart */
.js-plotly-plot {
    margin-top: 20px;
}

/* Updated radio button group styles */
.radio-group-compact {
    display: flex;
    gap: 8px;
    align-items: center;
}

.radio-group-compact .form-check {
    margin: 0;
    padding-left: 1.2rem;
    min-height: auto;
    display: flex;
    align-items: center;
}

.radio-group-compact .form-check-input {
    margin-top: 0;
    margin-left: -1.2rem;
    position: absolute;
}

.radio-group-compact .form-check-label {
    margin-left: 0.2rem;
    font-size: 0.7rem;
    color: #333;
    white-space: nowrap;
}

/* Add contrast to the filter section */
.activity-filters-container {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.25rem;
}

/* Make headers more visible */
.fw-bold {
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .checkbox-group .form-check {
        margin-right: 5px;
    }

    .fw-bold {
        font-size: 0.8rem;
    }

    .form-control {
        font-size: 0.8rem;
    }
}