/* تم شب */
body.dark-mode {
    background-color: #111827;
    color: #f3f4f6;
}

body.dark-mode .bg-white {
    background-color: #1f2937 !important;
}

body.dark-mode .bg-gray-100 {
    background-color: #111827 !important;
}

body.dark-mode .bg-gray-50 {
    background-color: #1f2937 !important;
}

body.dark-mode .text-gray-700 {
    color: #e5e7eb !important;
}

body.dark-mode .border-gray-300 {
    border-color: #374151 !important;
}

body.dark-mode .bg-gray-200 {
    background-color: #374151 !important;
}

/* اسکرول بار سفارشی */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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

body.dark-mode ::-webkit-scrollbar-track {
    background: #1f2937;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 640px) {
    .hexagon-grid {
        gap: 15px;
        padding: 10px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* انیمیشن لودینگ */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

ul {

  line-height: 30px !important;
}