﻿/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

font-face {
    font-family: 'Urbanist';
    src: url('fonts/Urbanist/Urbanist-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html, body {
    width: 480px;
    min-width: 480px;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Urbanist', sans-serif;
    background: none;
    font-size: 1.1em;
}

.page {
    width: 480px;
    min-width: 480px;
    max-width: 480px;
    margin: 0 auto;
}

.title {
    font-weight: bold;
    text-align: center;
    font-size: 0.9em;
}

.error {
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: red;
    padding-top: 1em;
    padding-bottom: 1em;
    border-radius: 10px;
}

.result {
    font-weight: bold;
    text-align: center;
    color: white;
    background-color: green;
    padding-top: 2em;
    padding-bottom: 2em;
    border-radius: 10px;
}

.warning {
    font-weight: bold;
    text-align: center;
    color: black;
    background-color: yellow;
    padding-top: 2em;
    padding-bottom: 2em;
    border-radius: 10px;
}

.hidden {
    display: none;
}

.label {
    font-weight: bold;
    text-align: center;
    font-size: 1em;
    margin: 1% 1%;
    white-space: normal;
}

.barcode {
    font-size: 0.8em;
    margin: 1% 1%;
    white-space: normal;
}

.button {
    background-color: rgba(26, 118, 255, 0.08);
    border: none;
    border-radius: 10px;
    color: #1A76FF;
    padding: 1% 1% 1% 1%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.3em;
    margin: 1% 1% 1% 1%;
    width: 97%;
    height: 46px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button2 {
    background-color: rgba(26, 118, 255, 0.08);
    border: none;
    border-radius: 10px;
    color: #1A76FF;
    padding: 1% 1%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.3em;
    margin: 1% 1%;
    width: 47%;
    height: 46px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.c {
    text-align: center;
}

.b {
    font-weight: bold;
}

input {
    font-size: 1.5em;
    border: 1px solid #777D8D;
    border-radius: 10px;
    outline: none;
    padding: 5px 10px 5px 10px;
    width: 97%;
}
input:focus {
    box-shadow: none;
    border: 1px solid #777D8D;
}
div.paramv {
    margin: 5px;
}
span.paramv {
    color: #777D8D; 
    /*display: inline-block; */
    display: inline-flex; 
    /*width: 120px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fs1 {
    font-size: 1em;
}

.fs2 {
    font-size: 1em;
}

.fs3 {
    font-size: 0.6em;
}

.fs4 {
    font-size: 1em;
}

.fs5 {
    font-size: 1em;
}

.fs6 {
    font-size: 1em;
}

table {
    border-collapse: collapse;
    border: 1px solid black;
    font-size: 1em;
    padding: 2px;
}
table td, th {
    padding: 2px;
    border: 1px solid black;
}
table th {
    padding: 2px;
    text-align: center;
}

.actions-section {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.action-button {
    flex: 1;
    min-height: 56px;
    width: 56px;
    max-width: 56px;
    background: white;
    border: 1px solid #EBEEF2;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 8px 16px;*/
    color: #777D8D;
    transition: all 0.2s ease;
}

.action-button:hover {
    border-color: #1A76FF;
    color: #1A76FF;
    background: rgba(26, 118, 255, 0.04);
}

.action-button:active {
    transform: translateY(1px);
}

