/**
 * Sahel Messaging - Frontend Styles
 * نظام المراسلة - الأنماط الأمامية
 */

/* Messaging Container */
.sahel-messaging-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Conversations List */
.sahel-conversations-list {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.sahel-conversation-item {
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.2s;
}

.sahel-conversation-item:hover {
    background-color: #f9f9f9;
}

.sahel-conversation-item.unread {
    background-color: #f0f7ff;
}

/* Messages Thread */
.sahel-messages-thread {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    min-height: 400px;
}

.sahel-message {
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    max-width: 70%;
}

.sahel-message.sent {
    background: #6FCF43;
    color: white;
    margin-right: auto;
    margin-left: 30%;
}

.sahel-message.received {
    background: #f0f0f0;
    color: #333;
    margin-left: auto;
    margin-right: 30%;
}

/* Message Form */
.sahel-message-form {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.sahel-message-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

.sahel-message-form button {
    margin-top: 10px;
    padding: 10px 24px;
    background: #6FCF43;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.sahel-message-form button:hover {
    background: #5eb535;
}
