.setting-main {
    width: 100%;
    height: calc(100vh - 65px);
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg);
}

.setting-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

.setting-section-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}

.setting-section-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(245, 245, 245, 0.9);
    backdrop-filter: blur(40px);
    border-radius: 14px;
}

.account-info-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.account-info-img-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
    user-select: none;
}

.username-account-info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.username-account-info p {
    font-size: clamp(12px , 1.4vw, 14px);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

#account-menu {
    cursor: pointer;
    pointer-events: auto;
}

.setting-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.setting-item-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 16px 16px 16px;
    box-sizing: border-box;
}

#goto-payment-irr, #goto-payment-usdt {
    cursor: pointer;
}

.inside-setting-item-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.inside-setting-item-header {
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    margin: 0;
    text-align: right;
    color: var(--color-text);
}

.setting-wallet-selection {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: 1px solid #f1f1f1;
    background-color: var(--color-bg);
    border-radius: 10px;
    padding: 4px;
    box-sizing: border-box;
}

.setting-wallet-selection-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    width: 50%;
    background-color: transparent;
    border-radius: 7px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.setting-wallet-selection-item.active {
    background-color: rgba(194, 160, 51, 0.3);
}
.setting-wallet-selection-item p{
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 600;
    margin: 0;
    text-align: center;
    color: var(--color-text);
}
.setting-wallet-selection-item img {
    width: 15px;
    height: 15px;
}

.setting-item-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: var(--color-bg);
    border: 1px solid #f1f1f1;
}

.setting-item-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.setting-item-title img {
    width: 22px;
    height: 22px;
    pointer-events: none;
    user-select: none;
}
.setting-item-title p {
    font-size: clamp(13px, 1.6vw, 14px);
    font-weight: 500;
    color: var(--color-text);
    margin: 0;
}

.goto-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}
.goto-item img {
    width: 15px;
    height: 15px;
    pointer-events: none;
    user-select: none;
}
.goto-item p{
    font-size: clamp(12px, 1.4vw, 14px);
    color: var(--color-text);
    font-weight: 400;
    margin: 0;
    text-align: right;
}

.setting-section-header {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
}
.setting-section-header {
    font-size: clamp(13px, 1.5vw, 16px);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}


.setting-balance-wallet {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.setting-balance-wallet img {
    width: 15px;
    height: 15px;
    pointer-events: none;
    user-select: none;
}
.setting-balance-wallet p {
    font-size: clamp(12px, 1.4vw, 14px);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}


.setting-app-notif, .setting-app {
    display: flex;
    justify-content: center;
    align-items: center;
}

.setting-switch {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 32px;
    height: 16px;
    padding: 1px;
    border-radius: 999px;
    cursor: pointer;
    background-color: #9f9f9f;
}
.setting-switch.active {
    background-color: var(--color-primary-hover);
}
.toggle-setting-switch {
    width: 16px;
    height: 16px;
    background-color: var(--color-bg-soft);
    position: absolute;
    right: 1px;
    top: 1px;
    border-radius: 50%;
    transition: right 0.3s ease;
}
.toggle-setting-switch.active {
    right: 17px;
}








/* Mobile */
@media (max-width: 991.999px) {
    .setting-main {
        height: calc(100vh - 133px);
    }
}