/* ✅ Stile Generale */
body {
    background: linear-gradient(to bottom, #B0C4DE, white);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* ✅ Stile per il titolo */
.header-container {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
}

.header-container span {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #002366;
}

/* ✅ Stile per il logo */
.logo-container {
    margin-top: 50px;
}

.logo-container img {
    max-width: 150px;
}

/* ✅ Stile per la barra delle notizie */
.news-ticker {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #002366 !important;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
    padding: 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 40px;
}

.news-ticker a {
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}

.news-ticker span {
    display: inline-block;
    white-space: nowrap;
    animation: scrollNews 45s linear infinite;
    font-size: 14px;
}

@keyframes scrollNews {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* ✅ Stile per i pulsanti */
.button-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.submit-button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-button:hover {
    background: #0056b3;
}

/* 🔴 Stile per il pulsante di uscita */
.exit-button {
    background: #dc3545;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.exit-button:hover {
    background: #c82333;
}
