/* Custom styles */
body {
    font-family: 'Tajawal', sans-serif;
}

.category-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.category-card i {
    transition: transform 0.3s ease;
}

/* RTL adjustments */
[dir="rtl"] .rtl\:mr-2 {
    margin-right: 0.5rem;
}

[dir="rtl"] .rtl\:ml-2 {
    margin-left: 0.5rem;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}