@font-face {
    font-family: "Sohne Breit Fett";
    src: url("fonts/SohneBreit-Fett.woff2") format("woff2"),
         url("fonts/SohneBreit-Fett.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box; /* Make sure padding and borders are included in total width and height */
}

.container {
    padding-left: 16px;
    padding-right: 16px;
}

body {
    font-family: Arial, sans-serif;
    position: relative;
    margin: 0;
}

.input-container {
    max-width: 1200px;
    width: 85%;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

#input-box {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 10px;
}
#input-box > * {
    grid-column: span 1;
    min-width: 0; 
}

#input-box input, #input-box button {
    width: 100%;
    box-sizing: border-box;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
    #input-box {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Adjustments for landscape phones and smaller tablets */
@media (max-width: 768px) {
    #input-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Adjustments for portrait phones */
@media (max-width: 480px) {
    #input-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

#input-box label {
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
}

#input-box p {
    font-size: 13px;
    margin-bottom: 0px;
    display: block;
}

h1 {
    font-size: 28px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: Sohne Breit Fett;
}

h2 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: Sohne Breit Fett;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    padding: 10px 32px;
    background-color: #41D083;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

button:hover {
    background-color: #2eae6a;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    background: #fff;
}

th, td {
    padding: 8px;
    text-align: left;
    font-size: 13px;
}

td {
    border: 1px solid #ccc;
}

th {
    background-color: #FD5E00;
    border: 1px solid #FD5E00;
}

tbody tr td:first-of-type {
    font-weight: bold;
}

.section {
    margin-bottom: 3em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {

    h1, h2 {
        font-size: 24px;
    }

    #input-box label, #input-box p {
        font-size: 12px;
    }

    .input-container {
        width: 95%;
        padding: 10px;
    }

    table {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
h1 {
font-size: 20px;
}
button {
    padding: 10px;
}
}

/* Horizontal scrolling for tables on small screens */
@media (max-width: 600px) {
.container {
overflow-x: auto;
}
}