/* messaging.css */

.messages-container {
    max-width: 800px;
    margin: 20px auto;
}

.message-list {
    list-style: none;
    padding: 0;
}

.message-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    margin-bottom: 5px;
    border-radius: 4px;
}

.message-item.unread {
    background: #e8f4fd;
    font-weight: bold;
}

.message-info {
    flex: 1;
}

.message-info a {
    text-decoration: none;
    color: #333;
}

.message-info .subject {
    font-size: 1.1em;
}

.message-info .meta {
    font-size: 0.85em;
    color: #777;
    margin-top: 5px;
}

.message-actions {
    margin-left: 15px;
}

.online-status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-left: 5px;
}

.online-status.online {
    background-color: #2ecc71;
}

.online-status.offline {
    background-color: #95a5a6;
}

.compose-form textarea,
.compose-form input[type="text"],
.compose-form input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.compose-form button {
    background: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.back-link {
    display: inline-block;
    margin-bottom: 15px;
}