body {
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.map-container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7), 0 2px 4px rgba(255, 255, 255, 0.3); /* Crvena sjena + bijeli sjaj */
    background: linear-gradient(90deg, #fff, #ff6666); /* Gradijent na tekstu */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.description {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5); /* Suptilna crvena sjena */
}

#map {
    width: 100%;
    height: 500px;
    border: 2px solid transparent;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5); /* Crveni pulsirajući obrub */
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.1), rgba(255, 255, 255, 0.05)); /* Suptilni gradijent unutar mape */
    border-radius: 10px;
}

.return-link {
    display: block;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff3333, #cc0000); /* Gradijent podloga */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.return-link:hover {
    transform: scale(1.05); /* Blago povećanje */
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.6);
}

.return-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.return-link:hover::after {
    left: 100%; /* Svjetlosni prelaz na hover */
}

.leaflet-popup-content-wrapper {
    background-color: #333;
    color: #fff;
    border: 1px solid #ff0000;
    border-radius: 8px; /* Zaobljeni kutovi */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    animation: popupFadeIn 0.3s ease-in-out; /* Animacija pojavljivanja */
}

.leaflet-popup-tip {
    background-color: #ff0000;
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5em;
    }
    .description {
        font-size: 1em;
    }
    #map {
        height: 400px;
    }
    .return-link {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}