/* Custom styles can be added here */
body {
    font-family: 'Inter', sans-serif;
}
/* Map styles */
#map {
    z-index: 0;
}

.leaflet-popup-content {
    font-family: 'Inter', sans-serif;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}
/* Popup styles */
.leaflet-popup-content {
    min-width: 200px;
}

.popup-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}
/* Responsive map height */
.h-screen-75 {
    height: calc(100vh - 300px);
    min-height: 500px;
}

/* Alert cards */
.alert-card {
    transition: all 0.2s ease;
}

.alert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About page styles */
.prose {
    line-height: 1.6;
    color: #374151;
}

.prose a {
    color: #2563eb;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* 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;
}
/* Animation for earthquake rows and cards */
@keyframes pulse {
    0% { background-color: rgba(255, 0, 0, 0.1); }
    50% { background-color: rgba(255, 0, 0, 0.3); }
    100% { background-color: rgba(255, 0, 0, 0.1); }
}

.earthquake-row, .earthquake-card {
    transition: all 0.2s ease;
}

.earthquake-row:hover, .earthquake-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.earthquake-row.recent {
    animation: pulse 2s infinite;
}

.earthquake-card {
    border-left: 4px solid;
}

.earthquake-card .bg-red-100 {
    border-left-color: #d62728;
}

.earthquake-card .bg-orange-100 {
    border-left-color: #ff7f0e;
}

.earthquake-card .bg-yellow-100 {
    border-left-color: #e3b341;
}

.earthquake-card .bg-green-100 {
    border-left-color: #1f77b4;
}
