.chat-container {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 300px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1000;
}

.chat-header {
    background-color: #ff7062;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.chat-main {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background-color: #1e1e1e;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    padding: 10px;
    border-radius: 5px;
}

.bot-message {
    background-color: #2a2a2a;
    color: white;
}

.user-message {
    background-color: #ff7062;
    color: white;
    align-self: flex-end;
}

.chat-footer {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-top: 1px solid #333;
    background-color: #1e1e1e;
}

#message-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: white;
}

#send-button {
    padding: 10px 20px;
    background-color: #ff7062;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#send-button:hover {
    background-color: #e65b50;
}