#mission-map {
width: 100%;
height: 80vh;
border-radius: 20px;
overflow: hidden; border: 1px solid #ccc; } #mission-map-filters {
margin-top: 20px;
padding: 15px;
background: #f9f9f9;
border-radius: 20px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
color: #333;
} #mission-map-filters label {
margin-right: 10px;
font-size: 14px;
cursor: pointer;
} .marker-hover {
transform: scale(1.2);
transition: transform 0.2s ease;
}   .leaflet-popup-content-wrapper,
.leaflet-popup-tip,
.leaflet-popup-content {
background: none !important;
border: none !important;
box-shadow: none !important;
padding: 0 !important;
margin: 0 !important;
}   .popup-container {
width: 300px;
background-color: #fff; border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
font-family: sans-serif;
}   .popup-top-header {
text-align: center;
margin-bottom: 10px;
margin-top: 10px;
}
.popup-city {
font-family: "UncutSans", sans-serif; font-weight: 600; font-size: 30px;
color: #1E5183; line-height: 1;
margin: 0;
padding: 0;
} .popup-city-divider {
height: 2px;
background-color: #EC785C; margin: 5px auto 0;
width: 90%; }   .popup-mission-box {
display: block;
background-color: #1E5183; color: #fff; text-align: center;
padding: 10px 15px; border-radius: 20px;
text-decoration: none;
transition: transform 0.3s ease;
margin: 10px 20px; }
.popup-mission-box:hover {
transform: scale(1.01);
} .popup-mission-name {
font-family: "UncutSans", sans-serif;
font-size: 18px;
color: #fff;
margin: 0;
padding: 0;
} .popup-mission-type {
font-family: "UncutSans", sans-serif;
font-size: 16px;
color: #fff;
margin-top: 5px;
}   .popup-body {
background-color: #fff;
padding: 20px;
color: #1E5183; }
.popup-item {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.popup-item i {
margin-right: 5px; }
.popup-label {
font-weight: bold;
margin-right: 5px;
color: #1E5183;
}
.popup-value {
color: #1E5183;
}
.popup-value a {
color: #1E5183 !important;
text-decoration: none;
}
.popup-value a:hover {
text-decoration: underline;
} .popup-divider {
height: 2px;
background-color: #EC785C;
margin: 15px 0;
width: 90%;
margin-left: auto;
margin-right: auto;
}   @media (max-width: 480px) {
.popup-container {
width: 95%;
}
}