:root {
    --brx-white: #FFFFFF;
    
    --brx-light-gray: #F2F7F6;
    --brx-footer-inactive-gray: #484848;
    --brx-gray: #3F3F3F;
    
    --brx-light-green: #CCFA89;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overscroll-behavior: none;
    font-family: 'Inter', sans-serif;
    overflow: hidden; 
}

body {
    display: flex;
    flex-direction: column;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

.no-select, .no-select * {
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
    user-select: none;         /* Standard */
    -webkit-touch-callout: none; /* iOS Safari — запрет контекстного меню при долгом тапе */
}

.application-frame {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #0a58ca;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    min-height: 100%;
}

.brx-shadow-bottom{
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}

.app-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    padding-bottom: 0;
    height: 90%;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media screen and (min-height: 700px) {
    .app-container {
        height: 80%;
    }
}
