﻿/* Chat container styles */
.chat-container {
    height: 60vh;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

/* Chat bubble for messages from the artist */
.bubble-artist {
    align-self: flex-end;
    background-color: #DCF8C6; /* WhatsApp light green */
    color: black;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 5px 0;
    max-width: 70%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Chat bubble for messages from the organizer */
.bubble-organizer {
    align-self: flex-start;
    background-color: #ECECEC; /* WhatsApp light gray */
    color: black;
    border-radius: 10px;
    padding: 8px 12px;
    margin: 5px 0;
    max-width: 70%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Timestamp styles */
.message-time {
    display: block;
    font-size: 0.8rem;
    text-align: right;
    margin-top: 2px;
    color: gray;
}

.chat-header {
    display: flex;
    justify-content: center;
    align-items: center; 
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}