.favorite-button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.favorite-button .fa-star {
    color: #ccc;
}

.favorite-button .fa-star.text-yellow-500 {
    color: #fbbf24;
}

#radiusMap, #locationMap, #viewLocationMap {
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.leaflet-container {
    border-radius: 0.5rem;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.leaflet-control-zoom a {
    background-color: white !important;
    color: #5e0490 !important;
    border: 1px solid #e5e7eb !important;
}

.leaflet-control-zoom a:hover {
    background-color: #f3f4f6 !important;
}

#locationMap {
    height: 400px;
    width: 100%;
    max-height: 400px;
    min-height: 300px;
}

#viewLocationMap {
    height: 300px;
    width: 100%;
    max-height: 300px;
}

.map-container {
    position: relative;
}

.save-location-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 20px;
    background-color: #7C3AED;
    color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.save-location-btn:hover {
    background-color: #6D28D9;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

