.account-header{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.account-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.tokens-container{
    display: flex;
    gap: 20px;
    width: 100%;
    flex-direction: column;
}

#tokensList{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.token-item{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}
#tabPersonal{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#newTokenForm{
    max-width: 650px;
}

.warning-text{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    color: #ED4D2F;
}

/* modal */
#apiHelpModal {
    position: fixed;
    inset: 0;
    display: none;               /* скрыт по умолчанию */
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, .5); /* полупрозрачный фон */
    z-index: 1000;
}
.api-help-card {
    position: relative;
    max-width: 760px;
    width: calc(100% - 32px);
    background: #F1F3F9;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.api-help-title {
    margin: 0 36px 18px 0;
    font-size: 20px;
    font-weight: 600;
    color: #53627D;
    text-align: center;
}
.api-help-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #6B7280;
}
.api-help-list {
    display: flex;
    gap: 20px;
    color: #4B5563;
    flex-direction: column;
}
.api-help-link {
    color: #2F6FED;
    text-decoration: underline;
}
.api-help-trigger {
    color: #2F6FED;
    text-decoration: underline;
    cursor: pointer;
}

