#map {
    position: relative;
}

.popup-card {
    font-size: 18px;
    min-width: 185px;
    /* transform: scale(1.3); */
}

/* Header: Flag + City Name */
.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.popup-header img.emoji {
    width: 28px;
    height: 28px;
    margin-right: 6px;
}

.city-name {
    font-weight: bold;
    font-size: 22px;
}

/* Body rows */
.popup-body .aqi-row,
.popup-body .pollutant-row {
    display: flex;
    justify-content: space-between;
    margin: 2px 0;
}

.label {
    font-weight: 600;
}

/* AQI badge */
.aqi-value {
    padding: 2px 6px;
    border-radius: 4px;
    color: #000;
}

/* Pollutant styling */
.pollutant-value {
    font-weight: 500;
    color: black;
}
.popup-footer {
    margin-top: 8px;
}

.save-btn-container {
    color: rgb(189, 15, 15);
}

.save-btn {
    background-color: #555;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.save-btn:hover {
    background-color: lightcoral;
}

.save-btn .tooltip {
    background-color: #555;
    color: white;
    position: absolute;
    bottom: -30px;
    left: -70px;
    font-size: 12px;
    border-radius: 4px;
    padding: 4px 8px;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.save-btn:hover .tooltip {
    opacity: 1;
}

