/* Chat container */
.chat-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    max-height: 400px;
    overflow-y: auto;
    background-color: #f9f9f9;
}

/* Shared style for messages */
.message {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 12px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Host messages (right aligned) */
.message.host {
    background-color: #dcf8c6;
    margin-left: auto;
    text-align: right;
}

/* User messages (left aligned) */
.message.user {
    background-color: #ffffff;
    margin-right: auto;
    text-align: left;
}

/* Timestamp style */
.timestamp {
    font-size: 0.75em;
    color: #888;
    margin-top: 5px;
}

/* notification */
.notification-link {
    text-decoration: none;
    color: inherit;
}

.notification-link:hover {
    background-color: #f1f1f1;
}
