.account-drawer-overlay {
    position: fixed;
    inset: 0;

    z-index: 1000;

    display: flex;
    justify-content: flex-end;

    background: rgba(0, 0, 0, 0.35);
}

.account-drawer-overlay.hidden {
    display: none;
}


.account-drawer {
    width: min(420px, 92vw);
    height: 100vh;

    background: #151515;
    color: #f2f2f2;

    display: flex;
    flex-direction: column;

    box-shadow:
        -12px 0 40px rgba(0, 0, 0, 0.45);
}


.account-drawer-header {
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 28px 22px;

    border-bottom: 1px solid #242424;
}


.account-drawer-header h2 {
    margin: 0;

    font-family: "Sora", sans-serif;
    font-size: 24px;
    font-weight: 600;

    color: #f2f2f2;
}


.account-drawer-close {
    border: 0;
    background: transparent;

    color: #f2f2f2;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    padding: 4px 8px;
}


.account-drawer-body {
    flex: 1;

    overflow-y: auto;

    padding: 28px;
}


.account-drawer-section {
    padding-bottom: 28px;
    margin-bottom: 28px;

    border-bottom: 1px solid #242424;
}


.account-drawer-section:last-child {
    border-bottom: 0;
}


.account-drawer-label {
    margin: 0 0 12px;

    font-family: "Sora", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;

    color: #777777;
}


.account-drawer-email {
    margin: 0;

    font-family: "Inter", sans-serif;
    font-size: 16px;

    color: #d0d0d0;
}


.account-drawer-usage {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


.account-drawer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    font-family: "Inter", sans-serif;
    font-size: 15px;

    color: #b8b8b8;
}


.account-drawer-row strong {
    font-weight: 600;

    color: #f2f2f2;
}


.account-drawer-muted {
    margin: 12px 0 0;

    font-family: "Inter", sans-serif;
    font-size: 13px;
    line-height: 1.6;

    color: #777777;
}


.account-drawer-api-key {
    display: flex;
    flex-direction: column;

    gap: 6px;

    margin-bottom: 16px;
}


.account-drawer-api-key span {
    font-size: 13px;

    color: #777777;
}


.account-drawer-api-key strong {
    font-family: "Inter", sans-serif;
    font-size: 14px;

    color: #d0d0d0;
}


.account-drawer-action {
    width: 100%;
}


.account-drawer-bind-form {
    margin-top: 18px;
}


.account-drawer-bind-form label {
    display: block;

    margin-bottom: 8px;

    font-family: "Inter", sans-serif;
    font-size: 13px;

    color: #b8b8b8;
}


.account-drawer-bind-form input {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    border: 1px solid #333333;
    border-radius: 6px;

    background: #181818;
    color: #f2f2f2;

    font-family: "Inter", sans-serif;
    font-size: 14px;
}


.account-drawer-bind-form input::placeholder {
    color: #666666;
}


.account-drawer-bind-form input:focus {
    outline: none;

    border-color: #555555;
}


.account-drawer-bind-actions {
    display: flex;

    gap: 10px;

    margin-top: 12px;
}


.account-drawer-bind-actions button {
    flex: 1;
}


.account-drawer-message {
    margin: 12px 0 0;

    color: #999999;

    font-size: 13px;
    line-height: 1.5;
}


.account-drawer-footer-section {
    padding-bottom: 8px;
}


@media (max-width: 600px) {

    .account-drawer {
        width: 100vw;
    }

    .account-drawer-header {
        padding: 22px 20px 18px;
    }

    .account-drawer-body {
        padding: 22px 20px;
    }

}