body {
    font-family: Arial, sans-serif;

    padding-top: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
  
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #fdcd3b;
    background-image: linear-gradient(110deg, #fdcd3b 60%, #ffed4b 60%);

}
.ss {
    position:
    relative;
    top:10px;
    margin: -50px auto;
     z-index:3;
    display: block;
    margin-bottom: 20px;
    width: 75%;
    border-radius: 20px;
    background-color: #1a1a1a;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
  }
.container {
    top:50px;
    background-color: #1a1a1a;
margin: 5px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 450px;
    color: white;
    padding: 20px;
    
}
.logo {
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700;
    font-size: 24px;
    font-weight: bold;
}
.subtitle {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 14px;
}
.form-group {
    margin-bottom: 20px;
    position: relative;
}
.form-group input {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #4CAF50;
    color: white;
    outline: none;
    box-sizing: border-box;
    font-size: 16px;
}
.form-group input:focus {
    border-bottom-color: #FFD700;
}
.form-group label {
    position: absolute;
    top: -20px;
    left: 0;
    color: #808080;
    font-size: 12px;
}
#risultato {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.1);
}
.error {
    color: #ff6b6b;
}
.success {
    color: #ffffff;
}
.btn-prenota {
    width: 100%;
    padding: 15px;
    background-color: #FFD700;
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.btn-prenota:hover {
    background-color: #ffc400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}
.notes-section {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.6;
}
.notes-section h3 {
    color: #FFD700;
    margin-bottom: 15px;
}
.notes-section p {
    margin-bottom: 10px;
}
.notes-section a {
    color: #4CAF50;
    text-decoration: none;
}
.notes-section a:hover {
    text-decoration: underline;
}
.black-friday {
    background: linear-gradient(45deg, #000000, #292929);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.green {
    background: linear-gradient(45deg, #b3ff00, #007009);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.red {
    background: linear-gradient(45deg, #ffa600, #ff0000);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.purple {
    background: linear-gradient(45deg, #ea00ff, #49005c);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.ciano {
    background: linear-gradient(45deg, #00e1ff, #007a7e);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.arancione {
    background: linear-gradient(45deg, #ff7b00, #944300);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    animation: pulse 2s infinite;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
span{
    font-size: 14px;
    color:#292929;
    font-weight: 200;
    animation: pulse 0.5s infinite;

}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    overflow-y: auto;
    font-size: 12px;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 5% auto;
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    color: white;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: sticky;
    top: 10px;
    float: right;
    font-size: 35px;
    font-weight: bold;
    color: #ff0000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #ffc400;
}

.modal-content h2 {
    color: #FFD700;
    margin-bottom: 20px;
}

.modal-content h3 {
    color: #4CAF50;
    margin: 15px 0;
}

.modal-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.modal-content ul li {
    margin: 10px 0;
    position: relative;
}

.modal-content ul li:before {
    content: "•";
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: -15px;
}

.modal-content strong {
    color: #FFD700;
}

.modal-content p {
    margin: 10px 0;
    line-height: 1.6;
}

/* Aggiungi questi stili CSS se non sono già presenti */
.modal-content button.btn-prenota {
    width: auto;
    min-width: 100px;
    margin: 0 auto;
    display: block;
}

#alertMessage {
    color: white;
    font-size: 16px;
    line-height: 1.5;
}
.btn-prenota.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Stile per quando il pulsante è cliccabile */
.btn-prenota:not(:disabled):hover {
    background-color: #ffc400;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
}

