@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@700&display=swap');

body {
    font-family: 'Mulish', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Elimina las barras de desplazamiento */
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: #333;
}

video#background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que el video cubra toda la pantalla */
    z-index: -1; /* Envía el video al fondo */
}

.navbar {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar button {
    background-color: black;
    color: white;
    border: 2px solid gold;
    border-radius: 10px;
    padding: 15px 30px;
    margin: 5px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar button:hover {
    background-color: gold;
    color: black;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 100px;
}

.chat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8); /* Fondo claro semi-transparente */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

textarea {
    width: 100%;
    height: 100px;
    border: 1px solid gold;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 10px;
}

button {
    background-color: black;
    color: white;
    border: 2px solid gold;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin: 10px 0;
}

button:hover {
    background-color: gold;
    color: black;
}

#responseArea {
    width: 80%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    color: black;
    text-align: left;
    font-size: 16px;
}

.kalnia-glaze-title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: italic;
    color: yellow;
    text-shadow: 2px 2px 4px white;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.agent-response {
    background-color: rgba(240, 240, 240, 0.9);
    border-left: 4px solid #1e90ff;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 3px;
    color: black;
}

.agent-response p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Estilos para el scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
