
    .app-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .responsive-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .responsive-content {
        width: 100%;
        padding: 16px;
    }

    @media (min-width: 403px) {
        .responsive-content {
            max-width: 680px;
            padding: 32px;
            margin-left: auto;
            margin-right: auto;
        }
    }

    @media (min-width: 744px) {
        .responsive-content {
            max-width: 718px;
            /* Keep the same padding as medium screens */
        }
    }

    .header-menu-item {
        color: #000;
        text-align: right;
        font-variant-numeric: lining-nums proportional-nums;
        font-family: 'Be Vietnam Pro';
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
    }

    /* Hide by default on all screens */
    .d-sm-flex {
        display: none;
    }

    .header-title {
        color: #000;
        text-align: right;
        font-variant-numeric: lining-nums proportional-nums;
        font-family: 'Be Vietnam Pro';
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: 32px;
    }

    /* Hide by default on all screens */
    .d-sm-flex {
        display: none;
    }

    /* Show only when screen is 403px or wider */
    @media (min-width: 744px) {
        .d-sm-flex {
            display: flex !important;
        }
    }

    .back-button-container {
        display: flex;
        justify-content: flex-start;
        width: 100%;
        /* Mobile default */
    }

    .back-button {
        display: flex;
        height: 56px;
        min-width: 104px;
        justify-content: center;
        align-items: center;
    }
    .back-button-padding {
    padding-left: 16px;
}

@media (min-width: 680px) {
    .back-button-padding {
        padding-left: 32px;
    }
}
