#map { 
    height: calc(100vh - 64px); 
}

.earthquake-marker {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: red;
    opacity: 0.6;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

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

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

/* Dark mode styles */
.dark body { background-color: #111827; }
.dark .bg-white { background-color: #1f2937; }
.dark .text-gray-800 { color: #f3f4f6; }
.dark .text-gray-900 { color: #f3f4f6; }
.dark .text-gray-500 { color: #9ca3af; }
.dark .border-gray-200 { border-color: #374151; }
.dark .divide-gray-200 > * { border-color: #374151; }
.dark .bg-gray-50 { background-color: #374151; }
.dark .hover\:bg-gray-50:hover { background-color: #4b5563; }
.dark .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.25); }

/* Footer Düzenlemeleri */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 40;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .flex-col {
        height: auto;
    }
    
    #map {
        height: 50vh;
        min-height: 300px;
    }
    
    .custom-scrollbar {
        max-height: 40vh;
    }
}

/* Mobil Optimizasyonları */
@media (max-width: 640px) {
    .text-xl {
        font-size: 1.1rem;
    }
    
    .px-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .py-3 {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .text-xs {
        font-size: 0.7rem;
    }
    
    .gap-4 {
        gap: 0.5rem;
    }
    
    .min-w-[200px] {
        min-width: 100%;
    }

    /* Footer için mobil düzenlemeler */
    footer {
        position: relative;
        margin-top: 2rem;
    }

    /* Ana içerik için padding */
    .flex-col {
        padding-bottom: 1rem;
    }

    /* Tablo container için margin */
    .custom-scrollbar {
        margin-bottom: 1rem;
    }

    /* Filtre butonları için mobil düzenlemeler */
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .flex-wrap {
        gap: 0.5rem;
    }
}

/* Tablet Optimizasyonları */
@media (min-width: 641px) and (max-width: 1024px) {
    #map {
        height: 40vh;
    }
    
    .custom-scrollbar {
        max-height: 45vh;
    }
}

/* Yatay Kaydırma için Tablo */
.overflow-x-auto {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* Harita Kontrolleri */
.leaflet-control-zoom {
    margin: 10px !important;
}

.leaflet-control-zoom a {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    font-size: 18px !important;
}

/* Filtreleme Alanı */
.bg-gray-50 {
    background-color: #f9fafb;
}

/* Tablo Başlıkları */
.sticky {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #f9fafb;
}

/* Mobil Menü */
@media (max-width: 640px) {
    .flex-wrap {
        flex-direction: column;
    }
    
    .min-w-[200px] {
        margin-bottom: 1rem;
    }
}

/* Filtre Butonları */
.filter-btn {
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
}

.filter-btn:hover {
    border-color: #3b82f6;
}

.filter-btn.active {
    background-color: #3b82f6 !important;
    color: white !important;
    border-color: #2563eb;
} 