/* Add custom CSS styles below */ 
/* تنسيق الهيدر */
.header {
    width: 100%;
    background-color: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* تنسيق قسم التصنيفات */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

/* تنسيق كل تصنيف */
.category {
    background-color: #ffffff;
    border: 2px solid #ddd;
    padding: 15px;
    width: 150px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* تأثير hover عند المرور على التصنيف */
.category:hover {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}

/* استجابة التصميم على الشاشات الصغيرة */
@media (max-width: 600px) {
    .categories {
        flex-direction: column;
        align-items: center;
    }
    .category {
        width: 80%;
    }
}