.checkbox-container {
    display: flex;
    align-items: center;
    padding: 0 8px; /* Add padding to match the dropdown */
}

.checkbox-container label {
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    user-select: none; /* Prevent accidental text selection */
    display: flex;
    color: black;
}

.checkbox-container input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    margin-right: 8px; /* Add some space between checkbox and label */
}

.checkbox-container > label:hover{
    background-color: #f1f1f1; /* Match hover effect from dropdown */
}