* {
    box-sizing: border-box;
}

:root {
    --bg: #f5f5f7;
    --card: #ffffff;
    --text: #1d1d1f;
    --muted: #777;
    --border: #e5e5e7;
    --primary: #111111;
    --danger: #d9363e;
}

body {
    margin: 0;
    padding: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    background: var(--bg);
    color: var(--text);
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

.app {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.header-user {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.dashboard {
    display: grid;
    gap: 16px;
}

.balance-card {
    padding: 24px;
    border-radius: 20px;
    background: var(--primary);
    color: white;
}

.balance-label {
    margin-bottom: 8px;
    font-size: 14px;
    opacity: 0.7;
}

.balance-value {
    font-size: 36px;
    font-weight: 700;
}

.card {
    padding: 20px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.card h2 {
    margin-top: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.category-card {
    padding: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.category-name {
    color: var(--muted);
    font-size: 14px;
}

.category-value {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
}

.expense-list {
    display: flex;
    flex-direction: column;
}

.expense {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.expense:last-child {
    border-bottom: none;
}

.expense-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.expense-description {
    font-weight: 600;
}

.expense-meta {
    color: var(--muted);
    font-size: 13px;
}

.expense-amount {
    font-weight: 700;
    white-space: nowrap;
}

.expense-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.expense-actions form {
    margin: 0;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.button:hover {
    opacity: 0.85;
}

.button-danger {
    background: var(--danger);
}

.button-secondary {
    background: #e9e9eb;
    color: var(--text);
}

.navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.navigation a {
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--muted);
}

.navigation a:hover {
    background: #e9e9eb;
    color: var(--text);
}


/* MODAL */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 24px;
    background: var(--card);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-header h2 {
    margin: 0 0 6px;
}

.modal-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.modal-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 50%;
    background: #eeeeef;
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.add-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 900;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .modal {
        align-items: center;
    }

    .modal-content {
        border-radius: 24px;
    }
}

@media (min-width: 768px) {
    .app {
        padding: 32px;
    }

    .dashboard {
        grid-template-columns: 2fr 1fr;
    }

    .balance-card {
        grid-column: 1 / -1;
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .expense {
        align-items: flex-start;
    }

    .expense-actions {
        flex-direction: column;
        align-items: flex-end;
    }

    .expense-actions .button {
        padding: 8px 10px;
        font-size: 13px;
    }
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
}

.chart-container canvas {
    width: 100%;
    height: 100%;
}

.month-card {
    padding: 16px 20px;
}

.month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.month-header h2 {
    margin: 0;
    font-size: 18px;
}

.month-header input {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--text);
    outline: none;
}

.month-header input:focus {
    border-color: #999;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    margin: 0 auto;
}

.chart-container canvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 500px) {
    .month-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .month-header input {
        width: 100%;
    }
}

.budget-card {
    padding: 20px;
}

.budget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.budget-header h2 {
    margin: 0 0 4px;
}

.budget-status {
    color: var(--muted);
    font-size: 14px;
}

.budget-form {
    display: flex;
    gap: 8px;
}

.budget-form input {
    width: 130px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
}

.budget-form input:focus {
    border-color: #999;
}

.budget-form .button {
    padding: 10px 14px;
}

.budget-bar {
    width: 100%;
    height: 10px;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: #e9e9eb;
}

.budget-progress {
    height: 100%;
    border-radius: 10px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.budget-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.budget-footer strong {
    color: var(--text);
}

@media (max-width: 600px) {
    .budget-header {
        align-items: stretch;
        flex-direction: column;
    }

    .budget-form {
        width: 100%;
    }

    .budget-form input {
        flex: 1;
        width: auto;
    }

    .budget-form .button {
        flex-shrink: 0;
    }

    .budget-footer {
        flex-direction: column;
        gap: 4px;
    }
}
.mobile-navigation {
    display: none;
}

@media (max-width: 600px) {
    body {
        padding-bottom: 76px;
    }

    .mobile-navigation {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 800;
        display: flex;
        justify-content: space-around;
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .mobile-navigation-item {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        min-height: 52px;
        border-radius: 12px;
        color: var(--muted);
        font-size: 11px;
        font-weight: 600;
    }

    .mobile-navigation-item.active {
        color: var(--text);
        background: #f0f0f2;
    }

    .mobile-navigation-icon {
        font-size: 21px;
        line-height: 1;
    }

    .navigation {
        display: none;
    }

    .header {
        margin-bottom: 16px;
    }

    .header h1 {
        font-size: 24px;
    }

    .add-button {
        bottom: 88px;
    }
}
.categories-page {
    display: grid;
    gap: 16px;
}

.category-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 500px;
}

.categories-list {
    display: flex;
    flex-direction: column;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item-name {
    font-weight: 600;
}

.category-item form {
    margin: 0;
}

.category-item .button {
    padding: 8px 12px;
    font-size: 13px;
}

@media (max-width: 600px) {
    .category-form {
        max-width: none;
    }

    .category-item {
        gap: 12px;
    }

    .category-item .button {
        flex-shrink: 0;
    }
}
.expenses-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.expenses-header h2 {
    margin-bottom: 4px;
}

.expenses-count {
    color: var(--muted);
    font-size: 13px;
}

.filter-clear {
    padding: 9px 13px;
    font-size: 13px;
}

.expense-filters {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 14px;
    border-radius: 14px;
    background: #f5f5f7;
}

.expense-filters .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.expense-filters label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.expense-filters input,
.expense-filters select {
    width: 100%;
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: white;
    color: var(--text);
    outline: none;
}

.expense-filters input:focus,
.expense-filters select:focus {
    border-color: #999;
}

.filter-empty {
    margin: 10px 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 900px) {
    .expense-filters {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .expenses-header {
        align-items: flex-start;
    }

    .expense-filters {
        grid-template-columns: 1fr 1fr;
        padding: 12px;
    }

    .expense-filters .filter-search {
        grid-column: 1 / -1;
    }

    .filter-clear {
        flex-shrink: 0;
    }
}

@media (max-width: 420px) {
    .expense-filters {
        grid-template-columns: 1fr;
    }

    .expense-filters .filter-search {
        grid-column: auto;
    }
}

.expenses-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
margin-bottom: 18px;
}

.stats-page {
display: grid;
gap: 16px;
}

.stats-header h2 {
margin: 0 0 4px;
font-size: 24px;
}

.stats-header p,
.stats-card-header p {
margin: 0;
color: var(--muted);
font-size: 14px;
}

.stats-summary {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
}

.stats-summary-card {
padding: 18px;
background: var(--card);
border: 1px solid var(--border);
border-radius: 16px;
}

.stats-summary-label {
color: var(--muted);
font-size: 13px;
}

.stats-summary-value {
margin-top: 7px;
font-size: 22px;
font-weight: 700;
}

.stats-summary-meta {
margin-top: 5px;
color: var(--muted);
font-size: 13px;
}

.stats-card-header {
margin-bottom: 18px;
}

.stats-card-header h2 {
margin: 0 0 4px;
}

.stats-chart-container {
position: relative;
width: 100%;
height: 320px;
}

.stats-chart-container canvas {
display: block;
width: 100%;
height: 100%;
}

.stats-category-list {
display: flex;
flex-direction: column;
gap: 18px;
}

.stats-category-row {
display: flex;
flex-direction: column;
gap: 8px;
}

.stats-category-info {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}

.stats-category-info span {
font-weight: 600;
}

.stats-category-info strong {
white-space: nowrap;
}

.stats-category-bar {
width: 100%;
height: 8px;
overflow: hidden;
border-radius: 8px;
background: #e9e9eb;
}

.stats-category-progress {
height: 100%;
border-radius: 8px;
background: var(--primary);
transition: width 0.3s ease;
}

@media (max-width: 900px) {
.stats-summary {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (max-width: 600px) {
.stats-summary {
grid-template-columns: 1fr;
}

.stats-summary-value {
    font-size: 20px;
}

.stats-chart-container {
    height: 260px;
}

}
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.auth-header {
    margin-bottom: 28px;
    text-align: center;
}

.auth-logo {
    margin-bottom: 28px;
    color: var(--text);
    font-size: 28px;
    font-weight: 700;
}

.auth-header h1 {
    margin: 0 0 8px;
    font-size: 26px;
}

.auth-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.auth-form {
    gap: 16px;
}

.auth-button {
    width: 100%;
    margin-top: 4px;
}

.auth-footer {
    margin-top: 24px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.auth-footer a {
    color: var(--text);
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .auth-page {
        align-items: flex-start;
        padding: 20px 16px;
    }

    .auth-container {
        margin-top: 10vh;
    }

    .auth-card {
        padding: 24px;
        border-radius: 20px;
    }

    .auth-logo {
        margin-bottom: 24px;
        font-size: 26px;
    }
}
.edit-page-content {
    display: flex;
    justify-content: center;
}

.edit-card {
    width: 100%;
    max-width: 700px;
}

.edit-header {
    margin-bottom: 24px;
}

.edit-header h2 {
    margin: 0 0 6px;
}

.edit-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.edit-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}

@media (max-width: 600px) {
    .edit-card {
        padding: 18px;
    }

    .edit-actions {
        flex-direction: column-reverse;
    }

    .edit-actions .button {
        width: 100%;
    }
}
.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-header h2 {
    margin: 0 0 4px;
    font-size: 24px;
}

.stats-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.stats-range {
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 12px;
    background: #e9e9eb;
}

.stats-range-button {
    padding: 8px 12px;
    border-radius: 9px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.stats-range-button.active {
    background: white;
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.stats-current-month {
    padding: 18px 20px;
}

.stats-current-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.stats-current-label {
    color: var(--muted);
    font-size: 13px;
}

.stats-current-value {
    margin-top: 5px;
    font-size: 26px;
    font-weight: 700;
}

.stats-change {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.stats-change span {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 400;
}

.stats-change.positive {
    color: #16803c;
}

.stats-change.negative {
    color: #c62828;
}

.stats-category-values {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-category-values span {
    min-width: 48px;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.stats-empty {
    padding: 20px 0;
    color: var(--muted);
    text-align: center;
}

@media (max-width: 700px) {
    .stats-header {
        align-items: stretch;
        flex-direction: column;
    }

    .stats-range {
        width: 100%;
    }

    .stats-range-button {
        flex: 1;
        text-align: center;
    }

    .stats-current-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .stats-change {
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .stats-summary {
        grid-template-columns: 1fr;
    }

    .stats-category-values {
        gap: 6px;
    }

    .stats-category-values strong {
        font-size: 14px;
    }

    .stats-category-values span {
        font-size: 12px;
    }

    .stats-chart-container {
        height: 280px;
    }
}
.account-page {
    display: grid;
    gap: 16px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.account-header h2 {
    margin: 0 0 4px;
}

.account-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.account-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.account-profile-card {
    padding: 22px;
}

.account-label {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
}

.account-username {
    font-size: 22px;
    font-weight: 700;
}

.account-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.account-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f0f0f2;
    font-size: 22px;
}

.account-stat-label {
    color: var(--muted);
    font-size: 13px;
}

.account-stat-value {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 700;
}

.account-section {
    padding: 22px;
}

.account-section-header {
    margin-bottom: 18px;
}

.account-section-header h2 {
    margin: 0 0 4px;
}

.account-section-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.account-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 600px) {
    .account-header {
        align-items: flex-start;
    }

    .account-stats {
        grid-template-columns: 1fr;
    }

    .account-stat-card {
        padding: 18px;
    }

    .account-section {
        padding: 18px;
    }

    .account-actions {
        flex-direction: column;
    }

    .account-actions .button {
        width: 100%;
    }
}
.account-messages {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.account-message {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    font-size: 14px;
}

.account-page {
    display: grid;
    gap: 16px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 4px;
}

.account-header h2 {
    margin: 0 0 4px;
}

.account-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.account-avatar {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.account-profile-card {
    padding: 22px;
}

.account-label {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 13px;
}

.account-username {
    font-size: 22px;
    font-weight: 700;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.account-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.account-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f0f0f2;
    font-size: 22px;
}

.account-stat-label {
    color: var(--muted);
    font-size: 13px;
}

.account-stat-value {
    margin-top: 4px;
    font-size: 22px;
    font-weight: 700;
}

.account-section {
    padding: 22px;
}

.account-section-header {
    margin-bottom: 18px;
}

.account-section-header h2 {
    margin: 0 0 4px;
}

.account-section-header p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.account-form {
    display: grid;
    gap: 16px;
}

.account-form .button {
    justify-self: start;
}

.account-data-list {
    display: grid;
    gap: 10px;
}

.account-data-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.account-data-item > div {
    display: grid;
    gap: 4px;
}

.account-data-item span {
    color: var(--muted);
    font-size: 13px;
}

.account-coming-soon {
    flex-shrink: 0;
    padding: 7px 10px;
    border-radius: 8px;
    background: #e9e9eb;
    color: #777 !important;
    font-size: 12px !important;
    font-weight: 600;
    white-space: nowrap;
}

.account-data-disabled {
    opacity: 0.7;
}

.account-danger-section {
    border-color: #e0b5b5;
}

.account-danger-section .account-section-header h2 {
    color: #b42323;
}

.account-logout {
    display: flex;
    justify-content: center;
    padding: 4px 0 20px;
}

@media (max-width: 800px) {
    .account-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .account-header {
        align-items: flex-start;
    }

    .account-section {
        padding: 18px;
    }

    .account-form .button {
        width: 100%;
    }

    .account-data-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-coming-soon {
        align-self: flex-start;
    }

    .account-logout .button {
        width: 100%;
    }
}
.account-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 0 32px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.account-footer strong {
    color: var(--text);
}

.account-footer span + span::before {
    content: "·";
    margin-right: 8px;
    color: #b0b0b0;
}

@media (max-width: 500px) {
    .account-footer {
        flex-wrap: wrap;
        padding-bottom: 90px;
    }
}