
.custom-farpas-pin {
    background: transparent;
    border: none;
}

.map-panel {
    padding: 0;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

#map {
    height: 650px;
    width: 100%;
    background-color: #0a0a0a; 
    z-index: 1;
}

.loading-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.9);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ff4d4d;
    font-weight: bold;
    font-size: 1.2rem;
    transition: opacity 0.5s;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 77, 77, 0.3);
    border-top: 4px solid #ff4d4d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.dark-popup .leaflet-popup-content-wrapper {
    background: #111;
    border: 1px solid #ff4d4d;
    color: #fff;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.8);
    font-family: 'Roboto', sans-serif;
}

.dark-popup .leaflet-popup-tip {
    background: #111;
    border: 1px solid #ff4d4d;
}

.dark-popup .leaflet-popup-content {
    width: max-content !important;
    max-width: 400px;
    margin: 15px;
}


.btn-store-events {
    display: inline-block;
    background: #1a1a1a;
    color: #FFF !important;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid #ff4d4d;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.2s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-store-events:hover {
    background: #ff4d4d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3);
}

.leaflet-popup-close-button {
    display: none !important;
}

.store-popup-header {
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.store-popup-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: #fff;
}

.store-popup-header span {
    font-size: 0.85rem;
    color: #aaa;
}

.store-popup-header strong {
    color: #FFF;
}

.store-top-cmd {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.store-cmd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
    flex: 0 0 100px;
}

.store-cmd-item img {
    height: 80px;
    border-radius: 6px; 
    margin-bottom: 8px;
}

.store-cmd-item span {
    font-size: 0.85rem;
    text-align: center;
    color: #ccc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}