/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #136F63;
    margin: 0;
    padding: 0;
}


.chat-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(82vh - 80px); 
}

.chat-box {
    width: 300px;
    height: 400px;
    background-color: #032B43;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.messages {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #3F88C5;
}

button {
    padding: 10px 15px;
    background-color: #FFBA08;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

.message {
    margin: 10px 0;
}

.message-user {
    color: #D00000;
    text-align: right;
}

.message-alexx {
    text-align: left;
    color: #4CAF50;
}
footer {
    background-color: #D00000;
    color: #fff;
    font-size: 14px;
    bottom: 0;
    position: fixed;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 999;
}

footer p {
    margin: 10px 0;
}

footer i {
    color: red;
}

footer a {
    color: #3c97bf;
    text-decoration: none;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 10px;  /* Small padding on top */
    margin-bottom: 5px;  /* Reduced margin to move header closer to the chat box */
    text-align: center;
}

.chatbot-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px; /* Reduced margin to make the icon closer to the title */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chatbot-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}
.suggestion-button {
    display: inline-block;
    background-color: #B388EB;
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.suggestion-button:hover {
    background-color: #45a049;
}

