@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles for Leaflet */
.leaflet-container {
    height: 100%;
    width: 100%;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 8px 12px;
    line-height: 1.4;
}

/* Custom emotion marker styles */
.emotion-marker {
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Intensity-based marker sizes */
.intensity-1 {
    width: 20px;
    height: 20px;
}

.intensity-2 {
    width: 25px;
    height: 25px;
}

.intensity-3 {
    width: 30px;
    height: 30px;
}

.intensity-4 {
    width: 35px;
    height: 35px;
}

.intensity-5 {
    width: 40px;
    height: 40px;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

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

/* Animation classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}





