@font-face {
    font-family: 'Mona Sans';
    src: url('fonts/Mona-Sans.woff2') format('woff2');
}

@font-face {
    font-family: 'Hubot Sans';
    src: url('fonts/Hubot-Sans.woff2') format('woff2');
}

html {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Mona Sans', sans-serif;
    font-size: 16px;
    background-color: #171515; /* Sets the overall background color */
    color: white; /* Sets the default text color to white */
    margin: 0; /* Removes the default margin */
}

.content-wrapper {
    flex: 1;
}

.navbar-custom {
    background-color: #171515 !important; /* Ensure navbar matches the theme */
}

.nav-link, .navbar-brand {
    color: white !important;
}

.dropdown-menu {
    background-color: #171515 !important; /* Ensure dropdown matches the theme */
}

.dropdown-divider {
    background-color: #ffffff !important; /* Ensure divider matches the theme */
}

.hero {
    background-color: #171515; /* Ensures hero section matches the theme */
    color: white;
    border-color: #ffffff;
}

.footer, footer {
    background-color: #171515;
    color: white;
    text-align: center;
    width: 100%;
}

a, .nav-link {
    color: #f8f9fa !important;
}

a:hover, .nav-link:hover {
    color: #cbd3da !important;
}

.img-fluid {
    border-radius: 5px; /* Optional: Rounds the corners of the images */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: Adds a shadow for depth */
    margin-bottom: 15px; /* Optional: Ensures there's space between images */
}

.chatbot-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 600px; /* Adjust based on your layout */
}

.chatbot-window {
    width: 100%; /* Adjust width to fit inside the container */
    background-color: #333333; /* Dark grey background */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    display: block;
}

.chatbot-header {
    background-color: #282828; /* Slightly lighter dark grey, adjust as needed */
    color: white;
    padding: 10px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    justify-content: center; /* Center the title if the close button is removed */
    align-items: center;
}

.chatbot-input {
    display: flex;
    padding: 10px;
    gap: 10px; /* Adds space between the input box and the button */
    background-color: #171515;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.chatbot-input input {
    flex-grow: 1; /* Allows the input to fill the available space */
    background-color: #282828;
    color: white;
    border: 1px solid #444; /* Slight border for the input */
    border-radius: 15px; /* Rounds the corners of the input box */
    padding: 5px 15px; /* Adds padding inside the input box */
}

.user-message {
    background-color: #5a5a5a; /* A lighter grey that stands out against the chat's dark background */
    color: #ffffff; /* Keeps text white for contrast and readability */
    border-radius: 8px;
    padding: 5px 10px; /* Added a bit more padding for better text alignment */
    margin-bottom: 2px; /* Keeps a small space between messages */
    margin-right: 10px; /* Ensures messages don't span the full width of the chatbox */
    align-self: flex-end; /* Aligns user messages to the right */
    max-width: 80%; /* Ensures longer messages wrap and don't stretch the chat box */
}

/* Styling for Echo's (chatbot's) responses */
.chat-message.echo-response {
    background-color: #414141; /* A different shade of grey for Echo responses */
    color: #e0e0e0; /* Lighter text for visibility */
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 2px;
    margin-left: 10px; /* Ensures Echo's messages don't span the full width of the chatbox */
    align-self: flex-start; /* Aligns Echo's messages to the left */
    max-width: 80%;
}

.feedback-btn {
    margin-left: 10px;
    border: none;
    background-color: #414141; /* Echo message background for blending */
    color: white; /* Adjust based on Echo message text color for visibility */
    cursor: pointer;
    font-size: 18px; /* Adjust size as needed */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}





/* You might need to adjust the existing .hero styles or add new ones to ensure there's enough space around the new chatbot container */
.hero {
    margin-bottom: 20px; /* Ensure there's space between the hero section and the chatbot container */
}
