.app-container {
    max-width: 500px;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    border-radius: 12px;
    flex-direction: column;
    justify-content: space-between;
}

.mobile {
    max-width: 500px;
    position: relative;
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #f8f9fd;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #eee;
}

    .mobile * {
        box-sizing: border-box;
        max-width: 100%;
    }

.content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    animation: pageOpenUp 0.5s ease;
}

@keyframes pageOpenUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header {
    padding: 10px 12px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #D0D3D4;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    gap: 10px;
    width: 100%;
}

.page-title {
    font-size: 14px;
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    line-height: 0;
}

    .page-title i {
        font-size: 20px;
        color: #444;
    }

.header-logo {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

    .header-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        cursor: pointer;
    }

.header-icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #dcdfe4;
    border-radius: 5px;
    color: #6c757d;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0;
    outline: none;
}

    .header-icon:hover {
        border-color: #bfc5cc;
        color: #343a40;
        background: #f8f9fa;
    }

    .header-icon.back-btn {
        border: 1px solid #D0D3D4;
    }

        .header-icon.back-btn i {
            font-size: 24px;
        }

.header-divider {
    width: 1px;
    height: 20px;
    background-color: #dcdcdc;
    align-self: center;
    flex-shrink: 0;
    margin: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-icon.js-fullscreen-btn {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
}

    .header-icon.js-fullscreen-btn i {
        font-size: 18px;
        line-height: 1;
    }
