
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, sans-serif; }
        body {
            background1: #fff;
            display: flex; justify-content: center; align-items: center;
            min-height: 100vh; padding: 20px;
        }
        #chat-container {
            width: 100%; max-width: 800px; height: 85vh;
            background: white; border-radius: 24px; box-shadow: 0 20px 60px rgba(212, 160, 23, 0.15);
            display: flex; flex-direction: column; overflow: hidden;
            border: 1px solid #f0e6d2;
        }
      
        /* CABECERA */
       
        #header {
            background: #00005f ;
            color: white; padding: 25px; text-align: center; flex-shrink: 0;
        }
        #header h1 { font-size: 1.8em; margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 15px; }
        #header h1 i { font-size: 1.5em; }
        #header p { opacity: 0.9; font-size: 0.95em; max-width: 600px; margin: 0 auto; }
        /* ÁREA DE CHAT */
        #chat-box {
            flex-grow: 1; padding: 25px; overflow-y: auto;
            background: #fefefe; display: flex; flex-direction: column; gap: 20px;
        }
        .message {
            max-width: 80%; padding: 8px 22px; border-radius: 22px;
            line-height: 1.5; box-shadow: 3px 3px 3px rgba(0,0,0,0.05);
            animation: fadeIn 0.3s ease;
            position: relative; word-wrap: break-word;
        }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
        .user-message {
            align-self: flex-end; background: linear-gradient(135deg, #007bff 0%, #0056cc 100%);
            color: white; border-bottom-right-radius: 8px;
        }
        .bot-message {
             background: #fff; color: #333;
            border: 1px solid #d8d8f5; border-bottom-left-radius: 8px;white-space: pre-line;
        }
        .bot-message strong { color: #b8860b; }
      
        /* INDICADOR DE TYPING */
     
        .typing-indicator {
            align-self: flex-start; background: #f8f9fa; color: #888;
            padding: 18px 22px; border-radius: 22px; font-style: italic;
            border: 1px solid #eee; border-bottom-left-radius: 8px;
            display: flex; align-items: center; gap: 10px;
        }
        .typing-dots { display: flex; gap: 5px; }
        .typing-dots span {
            width: 8px; height: 8px; background: #bbb; border-radius: 50%;
            display: inline-block; animation: bounce 1.4s infinite ease-in-out both;
        }
        .typing-dots span:nth-child(1) { animation-delay: -0.32s; }
        .typing-dots span:nth-child(2) { animation-delay: -0.16s; }
        @keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); } }
        /* ÁREA DE ENTRADA */
        #input-area {
            display: flex; padding: 25px; border-top: 2px solid #f5f5f5;
            background: white; flex-shrink: 0; gap: 15px;
        }
 
        #user-input {
  
            flex-grow: 1; padding: 18px 25px; border: 2px solid #cce9f2;
            border-radius: 50px; font-size: 1em; outline: none;
            transition: all 0.3s; background: #fff;
        }
        #user-input:focus { border-color: #5bc0de; }


        #send-btn {
            padding: 0; width: 50px; height: 50px; background: linear-gradient(135deg, #5bc0de 0%, #5bc0de 100%);
            color: white; border: none; border-radius: 50%; font-size: 1.3em;
            cursor: pointer; transition: all 0.3s; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
        }
        #send-btn:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(212, 160, 23, 0.4); }
        #send-btn:active { transform: scale(0.98); }
  
        /* RESPONSIVE */
   
        @media (max-width: 768px) {
            #chat-container { height: 90vh; border-radius: 20px; }
            #header { padding: 20px; }
            .message { max-width: 90%; padding: 16px 20px; }
            #input-area { padding: 20px; }
        }
  /* BOTONES */

.botonReservas {

 margin-bottom: auto; 
 background-color:#da3c30; 
 color:#fff !important;
 border-radius:20px; 
 border-color:#da3c30; 
 outline:none !important; /*Elimina el marco del boton*/
 font-size: 18px !important;
 font-family: 'Montserrat' !important;
 font-weight: 700 !important;
 letter-spacing: 1.20px;
 padding-left: 2%;
 padding-right: 2%;
 text-decoration: none;
}



.botonReservas:hover {
  background-color: #00005f !important;
  color:#fff !important;
  border-color:#00005f !important;
  border-radius:20px !important;
  font-size: 18px !important;
  font-family: 'Montserrat' !important;
  font-weight: 500 !important;
  letter-spacing: 1.60px;
  text-decoration: none;
}


}

.botonReservas:active {  /* al mantener el boton apretado*/
  background-color: #337ab7 !important;
  border-color:#337ab7 !important;
  border-radius:20px !important;
  font-size: 18px !important;
  font-family: 'Montserrat' !important;
  letter-spacing: 1.60px;
  text-decoration: none;
}


.boton-info{

    font-size: 18px;
    line-height: 1.33;
    border-radius: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;

}

