.network-operators-filter {
    border-radius: 0.375rem;
    background-color: #f8f9fa;
    padding: 0.5rem;
}

.network-operators-filter .form-check {
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease-in-out;
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.network-operators-filter .form-check:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.network-operators-filter .form-check-input {
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-left: 0 !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.network-operators-filter .form-check-label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 0;
    margin-bottom: 0;
}

.network-operators-filter .form-check-input:checked + .form-check-label {
    font-weight: 500;
    color: #0d6efd;
}

/* Add a search input above the operators list */
.operator-search-input {
    margin-bottom: 0.75rem;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}

.operator-search-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Styling for operator checkbox container */
.operator-checkbox-container {
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Custom scrollbar styling */
.operator-checkbox-container::-webkit-scrollbar {
    width: 6px;
}

.operator-checkbox-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.operator-checkbox-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.operator-checkbox-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Loading indicator */
.network-operators-loading {
    text-align: center;
    padding: 1rem;
    color: #6c757d;
}

/* Error message styling */
.network-operators-error {
    color: #dc3545;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
    background-color: rgba(220, 53, 69, 0.1);
    font-size: 0.875rem;
}
