﻿* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

button,
input,
select,
textarea {
    font: inherit;
}

.hidden {
    display: none !important;
}
.mobile-info-btn,
.mobile-info-panel {
    display: none;
}

@media (max-width:768px) {

    .topbar-right {
        display: none;
    }

    .mobile-info-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 46px;
        border-radius: 12px;
        margin-top: 10px;
    }

    .mobile-info-panel {
        display: none;
        margin-top: 10px;
        padding: 16px;
        border-radius: 16px;
        background: #1b2437;
        gap: 12px;
        flex-direction: column;
    }

        .mobile-info-panel.open {
            display: flex;
        }
}
.mobile-info-panel {
    display: none;
}

    .mobile-info-panel.open {
        display: flex;
    }