/* FONT & RESET */

body {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    margin: 0;

    padding: 0;

    background-color: #f9f9f9;

    color: #333;

}



a {

    text-decoration: none;

}



a:hover {

    text-decoration: underline;

}



/* NAVIGATION */

header {

    background: #0077b6;

    color: white;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}



.nav-link {

    font-size: 1.1em;

    transition: background 0.3s, color 0.3s;

    padding: 8px 15px;

    border-radius: 8px;

}



.nav-link:hover {

    background-color: #023e8a;

    color: #ffffff !important;

}



.tavoli {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    justify-content: center;

    margin: 30px 0;

}



.tavoli {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    justify-content: center;

    margin: 30px 0;

}



.tavolo {

    width: 120px;

    height: 120px;

    border-radius: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    font-weight: bold;

    font-size: 1.1em;

    cursor: pointer;

    border: none;

    box-shadow: 0 0 10px rgba(0,0,0,0.1);

    transition: transform 0.2s;

}



.tavolo:hover {

    transform: scale(1.05);

}



.tavolo.libero {

    background-color: #28a745; /* verde */

}



.tavolo.prenotato {

    background-color: #fd7e14; /* arancione */

}





/* FOOTER */

footer {

    font-size: 0.9em;

    background: #f1f1f1;

    color: #555;

}



