﻿.background-image {
    background: url('../images/desk.png');
    background-size: auto;
    background-position: center;
    /*height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.mud-appbar {
    box-shadow: none !important; /* Removes the shadow */
    border-bottom: none !important; /* Removes any border if present */
    background-color: transparent; /* Ensure the header background is transparent */
}

.text-overlay {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.active-button {
    background-color: #005a62; /* Highlight active button */
    color: white; /* Adjust text color for visibility */
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 600px;
    margin: auto;
    background-color: #f5f5f5;
}

.chat-history {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background-color: #fafafa;
}

.chat-input-container {
    padding: 8px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}

.message {
    padding: 8px 16px;
    margin: 8px 0;
    max-width: 80%;
    border-radius: 8px;
}

.bot-message {
    text-align: left;
}

.user-message {
    text-align: right;
}

.bot-message .message {
    background-color: #e3f2fd;
    margin-left: auto;
}

.user-message .message {
    background-color: #c8e6c9;
    margin-right: auto;
}
}

body {
    background-color: #f5e8c7; /* Fallback color */
}

.adventure-text {
    font-family: 'Georgia', serif;
    color: #d4a017; /* Golden tone */
}