/* Toggle Switch Styles */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin: 0;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6b7280;
    /* Gray when unchecked (disabled) */
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

/* Checked State (Enabled) - Medium Blue */
.toggle-switch input:checked+.toggle-slider {
    background-color: #3b82f6;
    /* Blue-500 */
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

/* Hover States */
.toggle-slider:hover {
    background-color: #4b5563;
    /* Darker gray on hover */
}

.toggle-switch input:checked+.toggle-slider:hover {
    background-color: #2563eb;
    /* Darker blue on hover */
}