/* الألوان المطلوبة: الأزرق، الأخضر، الأحمر، الرمادي */

/* الأزرق */
.blue-bg {
    background-color: #007bff !important;
}

.blue-text {
    color: #007bff !important;
}

.btn-blue {
    background-color: #007bff;
    color: white;
}

.btn-blue:hover {
    background-color: #0069d9;
    color: white;
}

/* الأخضر */
.green-bg {
    background-color: #28a745 !important;
}

.green-text {
    color: #28a745 !important;
}

.btn-green {
    background-color: #28a745;
    color: white;
}

.btn-green:hover {
    background-color: #218838;
    color: white;
}

/* الأحمر */
.red-bg {
    background-color: #dc3545 !important;
}

.red-text {
    color: #dc3545 !important;
}

.btn-red {
    background-color: #dc3545;
    color: white;
}

.btn-red:hover {
    background-color: #c82333;
    color: white;
}

/* الرمادي */
.grey-bg {
    background-color: #6c757d !important;
}

.grey-text {
    color: #6c757d !important;
}

.btn-grey {
    background-color: #6c757d;
    color: white;
}

.btn-grey:hover {
    background-color: #5a6268;
    color: white;
}

/* الأبيض */
.btn-white {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
}

.btn-white:hover {
    background-color: #f8f9fa;
}

/* الهوامش والمتعلقات */
.border-blue {
    border-color: #007bff !important;
}

.border-green {
    border-color: #28a745 !important;
}

.border-red {
    border-color: #dc3545 !important;
}

.border-grey {
    border-color: #6c757d !important;
}
/* ألوان الحالات */
.status-new { background-color: #007bff !important; color: white !important; }
.status-interested { background-color: #28a745 !important; color: white !important; }
.status-not-interested { background-color: #dc3545 !important; color: white !important; }
.status-follow-up { background-color: #ffc107 !important; color: #212529 !important; }
.status-paid { background-color: #17a2b8 !important; color: white !important; }

/* ألوان الإحصاءات */
.yellow-bg { background-color: #ffc107 !important; }
.teal-bg { background-color: #17a2b8 !important; }