body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
           background-color: #E60000;
        }

        #logo-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: #fff; /* Colore di sfondo della sezione logo */
            padding: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        #logo-container img {
            width: 40px; /* Regola la larghezza del logo */
        }

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
    background-color: #f8f8f8;
    line-height: 1.2;
}
        #chat-container {
           
    padding: 10px;
    background-color: #E60000;
    padding-top: 100px;
    
        }
        
        
        
           .bot-message {
            background-color: white;
            padding: 20px;
            border-radius: 25px;
            max-width: 100%;
            margin-bottom: 25px;
        }

        #chat-box {
  height: 65vh;
  overflow-y: auto;
  padding: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  
        }
        
         .user-message {
            background-color: #193755;
    color: white;
    padding: 10px;
    border-radius: 15px;
    max-width: 70%;
    align-self: auto;
    margin-bottom: 15px;
        }

       #user-input {
            margin-top: 10px;
        }

        .input-container {
            margin-top: 10px;
            width: 100%;
        }

        .input-container input,
        .input-container button {
            width: 100%;
            box-sizing: border-box;
        }

        .input-container input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            margin-bottom: 8px;
            
        }

        .input-container button {
    cursor: pointer;
    background-color: #193755;
    color: white;
    border: #193755;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    transition-duration: 0.4s;
    border-radius: 8px;
    margin-top: 10px; /* Aggiunto margine sopra il pulsante */
}

.privacy-container {
    color: #80808096;
    font-size: 10px;
    margin-top: 10px;
    text-align: initial;
}

        .input-container button:hover {
            background-color: white;
            color: #193755;
            border: 2px solid #193755;
        }

        .hidden {
            display: none;
        }
        
       

        .error-message {
            color: red;
            font-size: 12px;
            margin-top: 5px;
        }

        

        #user-answer {
            margin-top: 10px;
        }
        
          .button-container {
    display: flex;
    margin-top: 5px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.button-container button {
         font-size: 15px;
    text-decoration: none;
    border-radius: 32px;
    background: white;
    border: 1px solid white;
    color: #193755;
    font-family: inherit;
    text-transform: capitalize;
    width: 100px;
    margin-right: 10%;
    text-align: center;
    vertical-align: middle;
    line-height: 2.6;
    font-weight: 600;
    letter-spacing: normal;
    padding: 5px;
}

.button-container button:hover {
    background-color: #193755;
    border: 1px solid #193755;
    color: white; /* Aggiunto il cambio di colore del testo */
    transition: background-color 0.3s, border 0.3s, color 0.3s;
}


.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-button {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #f04d4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.countdown {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    animation: pulse 1s infinite; /* Animazione pulsante */
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


        #footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #fff; /* Colore di sfondo della sezione footer */
            
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        /* Aggiungi stili per l'input quando ha il focus */
input[type="tel"]:focus {
    outline: none; /* Rimuove l'outline di default su focus */
}