.chat-card {
    display: flex;
    flex-direction: column;
    width: 1024px; /* Fixed width */
    height: 800px; /* Fixed height */
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    overflow: hidden; /* Prevent horizontal overflow */
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 20px;
}

#chat-container {
    flex: 1; /* Make chat container take up remaining space */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: transparent; /* Make chat container background transparent */
    overflow: hidden; /* Prevent horizontal overflow */
}

#chat-messages {
    flex: 1; /* Allow it to expand and take available space */
    
    padding: 10px;
    display: flex;
    flex-direction: column;
    max-height: 100%; /* Ensures it doesn't overflow the container */

}

.user-message {
    align-self: flex-end;
    background-color: #1F3BB3;
    color: white;
    padding: 10px;
    border-radius: 20px 20px 0 20px;
    margin-bottom: 5px;
    max-width: 80%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	font-size: 14px;
}

.bot-message {
    align-self: flex-start;
    background-color: #e5e5ea;
    color: black;
    padding: 10px;
    border-radius: 20px 20px 20px 0;
    margin-bottom: 5px;
    max-width: 80%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	font-size: 14px;
}

.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 5px;
}

.button {
    background-color: #365c88;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

#user-input-container {
    display: flex;
    justify-content: center;
    padding: 10px;
    padding-bottom: 5%; /* Add 5% padding at the bottom */
    background-color: transparent; /* Make user input container background transparent */
	font-size: 14px;
}

#user-input {
    width: calc(95% - 20px);
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.centered-buttons {
    display: flex;
    position: relative;
    top: 35%;
    gap: 0.5rem;
    margin: 0 auto;
    height: 11%;
    max-width: 1024px;
    justify-content: center;
}

.overlay-button {
    width: 23%;
    background-color: white;
    border-radius: 20px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: medium;
}

#logo {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.small-icon {
    max-width: 24px;
}