/* RESET BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

/* PAGINA */
body {
    background-color: #eef4fb;
    color: #003366;
}

#page {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
}

/* TITOLO */
.title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2em;
}

/* TABELLA */
.meteo-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border: 2px solid #003366;
}

/* INTESTAZIONE */
.meteo-table thead {
    background-color: #003366;
    color: white;
}

.meteo-table th,
.meteo-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #003366;
}

/* RIGHE */
.meteo-table tbody tr {
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* HOVER */
.meteo-table tbody tr:hover {
    background-color: #cce4ff;
    cursor: pointer;
}

