/* Stile base del corpo */
body {
    /* Sfondo acceso */
    background-color: rgb(0, 0, 121);
    color: #ffffff;
    /* Testo bianco per contrasto */
    font-family: 'Arial', sans-serif;
    margin: 0;
    min-height: 100vh;
    /* Centra il contenuto verticalmente */
}

/* Stile per il contenitore principale */
.container {
    margin: 0 auto;
    width: 60%;
    margin-top: 20px;
    margin-bottom: 90px;
    background-color: rgb(255, 166, 0);
    /* Ciano brillante per lo sfondo del contenitore */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(255, 166, 0, 0.8);
    /* Ombra luminosa */

}

/* Stile per il titolo principale */
#title {
    color: rgb(0, 0, 121);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px white;
    text-align: center;
}

/* Stile per il risultato dei numeri vincenti*/
.winning-numbers, #superStar {
    color: #ff0000;
    /* Rosso acceso */
    font-size: 1.7em;
    margin: 30px 0;
    font-weight: bold;
    min-height: 1em;
    /* Mantiene lo spazio anche quando è vuoto */
}

.winning-numbers:hover {
    color: rgb(0, 0, 121);
    cursor: pointer;
    text-shadow: 1px 1px 2px #000000;
}

/* Stile per il pulsante */
.btn-orange {
    margin-top: 20px;
    ;
    background-color: orangered;
    /* Verde neon */
    color: rgb(0, 0, 121);
    /* Testo scuro per contrasto */
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

/* Effetto al passaggio del mouse sul pulsante */
.btn-orange:hover {
    background-color: #ffff00;
    /* Giallo brillante al passaggio */
    transform: scale(1.05);
}

/* Stile per il messaggio di successo (copia) */
#success {
    color: rgb(0, 0, 121);
    font-weight: bold;
    margin-top: 20px;
    display: none;
    transition: opacity 0.5s ease;
}

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: black;
}


/* Lista Applicazioni */
.list-item {
    margin: 20px 0;
    font-size: large;
    list-style: none;
    ;
}

.link-app {
    color: rgb(0, 0, 121);
    text-decoration: none;
    font-weight: bold;
}

.link-app:hover {
    color: orangered;
}

ul {
    padding: 0;
}

.center {
    text-align: center;
}

/* Risultato Calcolo Stipendio */
#result-salary {
    margin-top: 15px;
    font-weight: bold;
    color: #333333;
    /* Testo scuro per contrasto */
}

/* Input numerici stile */
input[type="number"] {
    padding: 8px;
    margin-top: 5px;
    background-color: #ffff00;
    border: 2px solid rgb(0, 0, 121);
    border-radius: 5px;
    font-size: 1em;
}

/* Label generico stile */
label {
    color: #333333;
    /* Testo scuro per contrasto */
    font-weight: bold;

}

/* Risultati Tombola Stile */
#result-tombola>h2 {
    margin-top: 20px;
    font-size: x-large;
    font-weight: bolder;
    color: black;
}

#result-tombola>h3 {
    margin: 5px;
    font-weight: 800;
    color: black;
}

/* Barra di navigazione stile  */
.nav-bar {
    background-color: rgb(255, 166, 0);
    /* Ciano brillante per lo sfondo del contenitore */
    padding: 10px 20px;
    box-shadow: 0 0 10px rgba(255, 166, 0, 0.8);
    /* Ombra luminosa */

}

.nav-link {
    color: rgb(0, 0, 121);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    padding: 10px;
    border-radius: 10px;

}

.nav-link:hover {
    color: orangered;
    background-color: rgb(0, 0, 121);
}

.nav-bar>ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    list-style: none;
}

/* Stile per il footer */
footer {
    text-align: center;
    color: rgb(0, 0, 121);
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(255, 166, 0);
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(255, 166, 0, 0.8);
    /* Ombra luminosa */

}