.settings-page .settings-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px 0;
}

.settings-page .user-profile-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f7;
    padding: 18px 24px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.settings-page .profile-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.settings-page .user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.settings-page .user-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.settings-page .username {
    font-size: 18px;
    font-weight: bold;
    color: #111111;
}

.settings-page .profile-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555555;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.settings-page .profile-right:hover {
    color: #000000;
}

.settings-page .settings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    position: relative;
}

.settings-page .row-label {
    font-size: 15px;
    color: #444444;
}

.settings-page .row-control {
    position: relative;
}

.settings-page .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 5px;
}

.settings-page .custom-select-wrapper {
    position: relative;
    width: 200px;
    user-select: none;
}

.settings-page .select-trigger {
    background-color: #e8f0fe;
    color: #1a73e8;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
}

.settings-page .select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.settings-page .custom-select-wrapper.open .select-options {
    display: flex;
}

.settings-page .select-options .option {
    padding: 10px 16px;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    transition: background 0.15s;
}

.settings-page .select-options .option:hover {
    background-color: #f5f5f5;
}

.settings-page .select-options .option.active {
    color: #1a73e8;
    font-weight: 600;
    background-color: #e8f0fe;
}

.settings-page .toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

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

.settings-page .toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e4e7e9;
    border-radius: 34px;
    transition: 0.25s;
}

.settings-page .toggle-switch .slider::before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.25s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.settings-page .toggle-switch input:checked + .slider {
    background-color: #3b71fe;
}

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

.settings-page .static-badge {
    background-color: #f1f3f4;
    color: #000000;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 8px;
}