
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

body {
    position: relative;
}

.leaflet-control-attribution { display: none !important; }
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: rgba(255, 255, 255, 0.8);
    color: #1c1c1e;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.1);
}
.leaflet-popup-content { margin: 1rem; font-size: 1rem; font-weight: 600; }

#map {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.leaflet-container { width: 100% !important; height: 100% !important; background: transparent !important; }

.user-map-marker {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e0e0e0; /* Серый фон вместо прозрачного */
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.user-marker-container {
    background: transparent;
    border: none;
}

/* Placeholder for loading images */
.side-menu-header img, .leader-avatar, .candidate-avatar {
    background-color: #e0e0e0;
    background-image: url('../components/svg/svg_ui/anim-circle.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}
