html {
    font-size: 16px;
}

/*
@media (max-width: 1200px) {
    html {
        font-size: calc(20px + 6 * ((100vw - 320px) / 680));
    }
} */

body {
    background-color: #212830;
}

button {
	font-size: inherit;
}

input {
    font-size: inherit;
}

a {
	color: #007bff;
}

a:visited {
    color: #027dff;
}

.chat-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chat-output {
    height: 300px;
    overflow-y: auto;
}

.chat-input-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

@media (max-width: 420px) {
    .chat-input {
        min-width: 100%;
    }
}

.chat-button {
    padding: 4px 4px;
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin: 8px !important;
    width: unset !important;
}

.bot-message {
    background-color: #e1e1e1;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    line-height: 1.6;
    border-left: 5px solid #007bff;
}

.user-message {
    background-color: white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    line-height: 1.6;
    font-weight: bold;
    font-style: italic;
    border-left: 5px solid #f5c11e;
}
