
/* Assign Sectors List */
.assign-sectors-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    margin: 1rem 0;
    padding-right: 0.5rem;
}

.assign-sector-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.assign-sector-item:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.sector-name-label {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4b5563;
    transition: .25s ease;
    border-radius: 34px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.6);
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: .25s ease;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

input:checked + .slider {
    background-color: var(--success);
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
}

input:checked + .slider:before {
    transform: translateX(22px);
}
