/* Notification Settings Specific Styles */

.notification-settings-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.notification-text {
    color: #273a41;
    font-weight: 500;
    font-size: 16px;
}

/* Custom Toggle Switch */
.form-check-input:checked {
    background-color: #d3ab55;
    border-color: #d3ab55;
}

.form-switch .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.form-switch .form-check-input:focus {
    box-shadow: none;
    border-color: rgba(211, 171, 85, 0.25);
}

/* Sidebar Specific (Unified) */
.profile-sidebar {
    background: white;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    font-size: 18px;
    text-align: end;
}

ul.nav.flex-column.py-4 {
    padding-inline: 15px;
}

.profile-sidebar .nav-link {
    color: rgba(123, 123, 123, 1);
    padding: 1rem 0;
    border-radius: 12px;
    margin-bottom: 5px;
    transition: all 0.3s;
}

.profile-sidebar .nav-link.active {
    color: #d3ab55 !important;
    font-weight: bold;
}

.mw-95 {
    max-width: 95%;
}