/* AquaTech1 custom styles mapping to SmartTHVI aesthetics */
body {
    background-color: #fafaff;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.imgIcon {
    cursor: pointer;
}

.card {
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);    
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    transition: all 0.2s;
}

.btn-outline-info:hover {
    background-color: rgba(23, 162, 184, 0.1);
}

.status-alert {
    animation: flash-red 2s infinite;
}

@keyframes flash-red {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}
