body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl.container{
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
  }

.card {
    border-radius: 8px;
    background-color: #121214;
    border: none;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}

.card-header {
    background-color: #121214;
    border-bottom: 1px solid #444444;
    padding: 10px;
}

.card-header .logo {
    height: 30px; /* Ajusta el tamaño del logo según tu preferencia */
    width: auto;

}

.loading-container {
    display: flex;
    align-items: center;
}

.loading-dots {
    display: inline-block;
    width: 60px;
    text-align: center;
}

.loading-dots div {
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #eb5d3a;
    animation: loading 1.4s infinite ease-in-out both;
}

.loading-dots div:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots div:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loading {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    background-color: #121214;
    padding-top: 20px;
    border-radius: 8px;
    position: relative;
}

.welcome-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #cccccc; /* Cambia el color del texto */
}

.welcome-text h1 {
    font-size: 30px; /* Tamaño del texto grande */
    margin: 0;
}

.welcome-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #cccccc; /* Cambia el color del texto */
}

.welcome-message h2 {
    font-size: 20px; /* Tamaño del texto más pequeño */
    margin: 0;
}

.message {
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    max-width: 70%;
    position: relative;
}

.message.user {
    background-color: #eb5d3a;
    color: white;
    margin-left: auto;
    flex-direction: row-reverse;
}

.message.bot {
    background-color: #333333;
    color: white;
    margin-right: auto;
    width: 100%;

}

.message img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 8px;

}

.input-group {
    display: flex;
    align-items: stretch;
    margin: 0;
}

.input-group .form-control {
    border: none;
    border-radius: 0px 0 0 0px;
    padding: 15px;
    background-color: #333333;
    color: #ffffff;
    font-size: 16px;
    flex: 1;
    height: 70px;
}

.input-group .btn {
    border-radius: 0 8px 8px 0;
    padding: 15px;
    background-color: #eb5d3a;
    border: none;
    color: white;
    font-size: 16px;
    height: 70px;
}

.input-group .btn:hover {
    background-color: #383636;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #eb5d3a;
}

.card-footer {
    padding: 0.7rem 0.7rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(18, 18, 20, .125);
}   