/* Chat Container */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 600px;
    background: linear-gradient(
        to bottom,
        var(--dark-gray) 0%,
        rgba(18, 18, 18, 0.98) 100%
    );
    border-radius: 15px;
    border: 1px solid rgba(29, 185, 84, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    backdrop-filter: blur(10px);
    cursor: default;
}

/* Message Styling */
.message {
    padding: 10px;
    border-radius: 12px;
    max-width: 85%;
    position: relative;
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: 0.75em !important;
}

.user-message {
    background: linear-gradient(
        to left,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: auto;
}

.ai-message {
    background: linear-gradient(
        to right,
        rgba(29, 185, 84, 0.05) 0%,
        rgba(29, 185, 84, 0.1) 100%
    );
    border: 1px solid rgba(29, 185, 84, 0.15);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

/* Chat Messages Area */
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    cursor: default;
    font-size: 1.1em !important;
}

/* Rest of the styling... */
