.gsc-settings-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(0, 18, 45, 0.58);
}

.gsc-settings-menu-modal {
    width: calc(100% - 20px);
    max-width: 420px;
    max-height: calc(100vh - 24px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow:
        0 22px 60px rgba(0, 17, 43, 0.28);
}

.gsc-settings-menu-header {
    padding: 24px 24px 18px;
    text-align: center;
}

.gsc-settings-menu-header h2 {
    margin: 0;
    color: #06285a;
    font-size: 30px;
    font-weight: 750;
}

.gsc-settings-menu-content {
    position: relative;
    min-height: 0;
    overflow-y: auto;
    padding: 0 20px 8px;
}

.gsc-settings-menu-item {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 4px;
    border: 0;
    border-bottom: 1px solid #e7ebf0;
    background: transparent;
    color: #06285a;
    font-size: 17px;
    font-weight: 700;
    text-align: left;
}

.gsc-settings-menu-chevron {
    color: #2e8b24;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.gsc-settings-menu-divider {
    height: 12px;
    margin-inline: -20px;
    border-top: 1px solid #e1e6ed;
    border-bottom: 1px solid #e1e6ed;
    background: #f3f5f7;
}

.gsc-settings-menu-footer {
    padding: 18px 24px 22px;
    border-top: 1px solid #e6ebf2;
}

.gsc-settings-menu-close {
    width: 100%;
    min-height: 56px;
    font-size: 19px;
}

@media (max-width: 390px) {
    .gsc-settings-menu-overlay {
        padding: 8px;
    }

    .gsc-settings-menu-modal {
        width: calc(100% - 12px);
        max-height: calc(100dvh - 16px);
    }

    .gsc-settings-menu-content {
        padding-inline: 16px;
    }

    .gsc-settings-menu-divider {
        margin-inline: -16px;
    }

    .gsc-settings-menu-footer {
        padding: 16px;
    }
}