.message {
    max-width: 85%;
    padding: 10px 14px;
    margin-bottom: 10px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
}

.bot-message {
    background: #f3f4f6;
    color: #111827;
    align-self: flex-start;
    max-width: 95%;
}

.user-message {
    background: #2563eb;
    color: white;
    margin-left: auto;
}

#chatMessages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 320px;
    padding: 15px;
}

/* Chatbot Quick Action Buttons styling */
.quick-actions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
    padding: 0 5px;
    width: 100%;
}

.quick-action-btn {
    background: rgba(131, 42, 139, 0.08);
    color: #30c3e4;
    border: 1px solid rgba(48, 195, 228, 0.25);
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: Inter, sans-serif;
    font-weight: 500;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, #832a8b, #30c3e4);
    color: white;
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(48, 195, 228, 0.15);
}