@tailwind base;
@tailwind components;
@tailwind utilities;

[x-cloak] {
    display: none;
}

.chat-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
}
.chat-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 10px;
    background-color: #e9ecef;
}
.chat-message .sender {
    font-weight: bold;
}
.chat-message .text {
    margin: 5px 0;
}
.chat-message .time {
    font-size: 0.8em;
    color: #666;
}

.chat-message.sent {
    text-align: left;
}
