.notifications-hero-section {
    margin-bottom: 25px;
    padding-top: 5px;
}

.notifications-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.notifications-desc {
    font-size: 0.95rem;
    color: #666;
}

.toggle-list {
    display: flex;
    flex-direction: column;
}

.toggle-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin-top: 5px;
}

.toggle-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
}

.toggle-item:last-child {
    border-bottom: none;
}

.toggle-info {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.toggle-info strong {
    font-size: 1.05rem;
    color: #2d3748;
    margin-bottom: 3px;
}

.toggle-info span {
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.3;
}

/* Beautiful Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    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: #cbd5e0;
    transition: .3s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input:checked+.slider {
    background-color: #8b5cf6;
}

input:focus+.slider {
    box-shadow: 0 0 1px #8b5cf6;
}

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

.slider.round {
    border-radius: 28px;
}

.slider.round:before {
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch.disabled .slider {
    cursor: not-allowed;
}




