.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
    width: 20px!important;
    height: 20px!important;
}
.map-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.map-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}
.map-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 700;
}
.map-header p {
    margin: 0;
    font-size: 1.2rem;
    opacity: 0.9;
}
.map-section {
    flex: 1;
    position: relative;
    min-height: 60vh;
}
.map-display {
    display: block;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}
.leaflet-container {
    font-family: inherit;
    border-radius: 0;
}
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.leaflet-popup-content {
    margin: 12px 16px;
    line-height: 1.4;
}
.leaflet-popup-tip {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.map-controls {
    background: #f8f9fa;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}
.map-legend {
    max-width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
}
.map-legend h3 {
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.controls-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.weekend-selector {
    flex-shrink: 0;
    text-align: center;
}
.weekend-selector h4 {
    font-size: 1em;
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
}
.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4CAF50;
    transition: .4s;
    border-radius: 30px;
}
.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider {
    background-color: #2196F3;
}
.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(30px);
}
.toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    min-width: 30px;
    text-align: center;
}
.toggle-label.active {
    color: #2196F3;
    font-weight: 700;
}
.toggle-label.inactive {
    color: #999;
}
.legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9em;
    color: #555;
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    min-width: 120px;
    justify-content: center;
}
.legend-item:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.legend-item.active {
    background-color: #e8f4fd;
    border-color: #4CAF50;
    color: #2e7d32;
    font-weight: 600;
}
.legend-item.inactive {
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #999;
    opacity: 0.6;
}
.legend-item.inactive .legend-color {
    opacity: 0.4;
}
.legend-item.inactive .legend-icon {
    opacity: 0.4;
}
.legend-color {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.legend-icon {
    display: inline-block;
    margin-right: 8px;
    transition: all 0.3s ease;
    vertical-align: middle;
    width: 20px;
    height: 20px;
}
.legend-item[data-category="free"] .legend-icon {
    width: 20px;
    height: 20px;
}
.legend-item[data-category="attraction"] .legend-icon {
    width: 20px;
    height: 20px;
}
.legend-item[data-category="pub_tour"] .legend-icon {
    width: 41px; 
    height: 41px;
}
.legend-item[data-category="walking_tour"] .legend-icon {
    width: 20px;
    height: 20px;
}
.legend-item[data-category="music"] .legend-color {
    background-color: #FF6347;
}
.legend-item[data-category="art"] .legend-color {
    background-color: #4682B4;
}
.legend-item[data-category="business"] .legend-color {
    background-color: #8A2BE2;
}
.legend-item[data-category="nature"] .legend-color {
    background-color: #32CD32;
}
.legend-item[data-category="culture"] .legend-color {
    background-color: #FFD700;
}
.legend-item[data-category="food"] .legend-color {
    background-color: #FF69B4;
}
.legend-item[data-category="other"] .legend-color {
    background-color: #1E90FF;
}
.map-intro {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.intro-content h3 {
    margin: 15px 0 10px 0;
    color: #333;
    font-size: 1.2em;
}
.intro-content ul {
    margin: 10px 0;
    padding-left: 20px;
}
.intro-content li {
    margin: 8px 0;
    line-height: 1.4;
}
.map-faq {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.map-faq h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.4em;
}
.faq-item {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #007bff;
}
.faq-item h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.1em;
}
.faq-item p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}
.map-links {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}
.map-links h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.4em;
}
.map-links p {
    margin: 0 0 15px 0;
    color: #666;
}
.map-links ul {
    margin: 0;
    padding-left: 20px;
}
.map-links li {
    margin: 8px 0;
    line-height: 1.4;
}
.map-links a {
    color: #007bff;
    text-decoration: none;
}
.map-links a:hover {
    text-decoration: underline;
}
.legend-item.active .legend-color {
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
}
.legend-item span {
    font-weight: 500;
}
@media (max-width: 768px) {
    .map-header h1 {
        font-size: 2rem;
    }
    .map-header p {
        font-size: 1rem;
    }
    .map-section {
        min-height: 50vh;
    }
    .map-display {
        height: 50vh;
        min-height: 400px;
    }
    .controls-row {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .legend-items {
        justify-content: center;
    }
}