/* web_ui/static/style.css - 2000s Nostalgic Style */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGElEQVQIW2NkYGD4DwQMgAIYFwX+E8FwJgA1qR1pCwncYwAAAABJRU5ErkJggg==');
}

.header {
    background: linear-gradient(to bottom, #3366cc, #2244aa);
    color: white;
    padding: 10px;
    text-align: center;
    border: 2px outset #6699ff;
    margin-bottom: 10px;
}

.header h1 {
    margin: 0;
    font-size: 24px;
    text-shadow: 2px 2px 4px #000000;
}

.meeting-room {
    background-color: #e8e8e8;
    border: 1px solid #cccccc;
    padding: 5px 10px;
    margin-bottom: 10px;
    text-align: center;
}

.meeting-room h2 {
    margin: 0;
    color: #3366cc;
    font-size: 18px;
}

.chat-window {
    background-color: white;
    border: 2px inset #cccccc;
    height: 400px;
    overflow-y: auto;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fffff0;
}

.message {
    background-color: #f8f8f8;
    border: 1px solid #dddddd;
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 4px;
}

.message-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-weight: bold;
    color: #3366cc;
}

.sender {
    font-size: 14px;
}

.timestamp {
    font-size: 12px;
    color: #666666;
}

.reply-reference {
    font-size: 11px;
    color: #888888;
    margin-bottom: 3px;
    font-style: italic;
}

.message-content {
    margin: 5px 0;
    line-height: 1.4;
}

.message-actions {
    text-align: right;
}

.message-actions button {
    background-color: #3366cc;
    color: white;
    border: 1px outset #6699ff;
    padding: 2px 8px;
    font-size: 11px;
    cursor: pointer;
}

.message-actions button:hover {
    background-color: #2244aa;
}

.input-area {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#message-input {
    flex: 1;
    padding: 8px;
    border: 2px inset #cccccc;
    font-size: 14px;
}

button {
    background: linear-gradient(to bottom, #66cc66, #44aa44);
    color: white;
    border: 2px outset #88ee88;
    padding: 8px 20px;
    font-size: 14px;
    cursor: pointer;
}

button:hover {
    background: linear-gradient(to bottom, #55bb55, #339933);
}

button:active {
    border: 2px inset #88ee88;
}

.footer {
    background-color: #e8e8e8;
    border-top: 1px solid #cccccc;
    padding: 5px;
    text-align: center;
    color: #666666;
    font-size: 12px;
}

.welcome-message {
    text-align: center;
    color: #888888;
    font-style: italic;
    margin: 20px 0;
}