/* css/style.css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.email-body {
    max-height: 500px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background-color: #f8f9fa;
}

.list-group-item {
    cursor: pointer;
    transition: all 0.3s;
}

.list-group-item:hover {
    background-color: #e9ecef;
    transform: translateX(-2px);
}

.list-group-item.active {
    background-color: #007bff;
    border-color: #007bff;
}

.pagination {
    margin-bottom: 0;
}

.page-link {
    cursor: pointer;
}

.badge {
    font-size: 0.8em;
}

/* تحسين عرض المرفقات */
.attachment-list {
    list-style: none;
    padding: 0;
}

.attachment-list li {
    padding: 5px 10px;
    margin-bottom: 5px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

/* تحسين عرض البحث */
.search-highlight {
    background-color: yellow;
    font-weight: bold;
}

/* تنسيق الأعمدة */
.col-md-2, .col-md-4, .col-md-6 {
    height: 100%;
    overflow-y: auto;
}

/* تحسين التجاوب مع الشاشات الصغيرة */
@media (max-width: 768px) {
    .col-md-2, .col-md-4, .col-md-6 {
        height: auto;
        max-height: 300px;
    }
}

/* تحسين مظهر الأزرار */
.btn-group .btn {
    font-size: 0.9em;
}

/* تنسيق الرسائل غير المقروءة */
.list-group-item.fw-bold {
    border-right: 3px solid #007bff;
}

/* تنسيق الإشعارات */
.alert {
    margin-bottom: 10px;
}