body {
    background-color: #1c1c1c;
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Impedisce lo scroll orizzontale */
}

.container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* Abilita lo scroll verticale */
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #ff6f00;
    margin: 0;
}

h2 {
    color: #ff6f00;
}
h3 {
    margin-left: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #333;
}

th, td {
    padding: 8px;
    text-align: center;
    white-space: nowrap; /* Impedisce il wrapping del testo nelle celle */
    font-size: 12px; /* Riduce la dimensione del testo nelle celle */
}

tr:nth-child(even) {
    background-color: #333;
}

tr:hover {
    background-color: #444;
}

form {
    margin-bottom: 20px;
}

input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #333;
}

button {
    padding: 10px 20px;
    background-color: #ff6f00;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff9000;
}

footer {
    text-align: center;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    table {
        font-size: 10px; /* Riduce ulteriormente la dimensione del testo nelle celle */
    }
}
ol { padding-left: 0em; }
