/* Frontend Widget */
.message {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    max-width: 80%;
}

.message-user {
    background: #0084ff;
    color: white;
    margin-left: auto;
}

.message-admin {
    background: #f0f0f0;
    color: #333;
    margin-right: auto;
}

.message-sender {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
    opacity: 0.8;
}

.message-time {
    font-size: 11px;
    text-align: right;
    margin-top: 4px;
    opacity: 0.6;
}

.status-online {
    color: #25D366;
    font-weight: bold;
}

.status-offline {
    color: #999;
    font-style: italic;
}

/* Admin Interface */
.online-admins {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    padding: 5px 10px;
    background: white;
    border-radius: 20px;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
}

.status-indicator.online {
    background: #25D366;
}

.status-indicator.away {
    background: #FFC107;
    animation: pulse 2s infinite;
}

.status-indicator.offline {
    background: #DC3545;
}

.online-status.away {
    background: #FFC107;
    animation: pulse 2s infinite;
}

.online-status.offline {
    background: #ccc;
}