body {
    font-family: Arial, sans-serif;
    margin: 0; /* Reset domyślnych marginesów */
    padding: 0; /* Reset domyślnych paddingów */
    background-color: #f0f0f0;
}

.container {
    display: flex;
    width: 900px; /* Zgodne z aplikacją stacjonarną */
    height: 800px; /* Zgodne z aplikacją stacjonarną */
    margin: 0 auto;
    position: relative;
    padding: 0; /* Reset paddingu */
}

.left-panel {
    width: 200px;
    background-color: white;
    padding: 5px;
    box-sizing: border-box;
}

.left-panel .section-title {
    font-size: 12px;
    font-weight: bold;
    margin: 10px 0 5px 0; /* Dodajemy odstęp poniżej */
}

.left-panel .bold-label {
    display: block;
    margin: 5px 0 2px 0; /* Większy odstęp nad etykietą, mniejszy pod */
    font-weight: bold;
    font-size: 10px;
}

.left-panel input, .left-panel select {
    width: 60px; /* Węższe pola, jak w aplikacji stacjonarnej */
    padding: 3px;
    font-size: 10px;
    font-weight: bold;
}

.left-panel input[type="number"] {
    background-color: #ADD8E6;
    border: 2px solid yellow;
}

.left-panel .bold-select {
    font-weight: bold;
}

.left-panel input[type="radio"] {
    margin-right: 5px; /* Odstęp między radio button a etykietą */
}

.left-panel button {
    margin-top: 15px;
    padding: 8px;
    width: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
}

.image-container {
    position: absolute;
    width: 600px;
    height: 800px;
    left: 300px; /* Obrazek zaczyna się od x=300, jak w aplikacji stacjonarnej */
    top: 0; /* Upewniamy się, że nie ma przesunięcia w pionie */
    padding: 0; /* Reset paddingu */
}

#background-image {
    width: 600px;
    height: 800px;
    display: block; /* Upewniamy się, że obrazek nie ma dodatkowych marginesów */
}

.input-with-label {
    position: relative;
}

.input-label {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    color: black;
    line-height: 30px; /* Wyrównanie pionowe do pola */
    z-index: 2; /* Etykiety nad obrazkiem i polami */
    background-color: rgba(255, 255, 255, 0.8); /* Lekko przezroczyste tło dla lepszej widoczności */
    padding: 2px 4px; /* Mały padding dla estetyki */
}

.input-force {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #FFA07A; /* Jasny pomarańczowy */
    border: 2px solid yellow;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: black;
    z-index: 1;
}

.input-geometry {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #ADD8E6; /* Jasny niebieski */
    border: 2px solid yellow;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: black;
    z-index: 1;
}

.input-geometry.readonly {
    border: none;
}

.input-cover {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #D3D3D3; /* Jasny szary */
    border: 2px solid yellow;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: black;
    z-index: 1;
}

.input-rebar {
    position: absolute;
    width: 40px;
    height: 30px;
    background-color: #90EE90; /* Jasny zielony */
    border: none;
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: black;
    z-index: 1;
}

.results-panel {
    width: 400px;
    height: 1100px;
    background-color: white;
    padding: 10px;
    overflow-y: auto;
    position: absolute;
    left: 900px; /* Po prawej stronie okna, jak w aplikacji stacjonarnej */
    top: 0;
}

.results-panel h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 5px;
}

.results-panel p {
    font-size: 12px;
    margin: 5px 0;
}