body {
    /*background-color: skyblue;*/

}

/*#map { height: 180px; }*/

/*#map {*/
/*    height: 400px;*/
/*    width: 600px;*/
/*}*/

.leaflet-container {
    height: 400px;
    width: 600px;
    max-width: 100%;
    max-height: 100%;
}

.dot_red {
    height: 10px;
    width: 10px;
    background-color: darkred;
    border-radius: 50%;
    vertical-align: center;
    display: inline-block;
}

.dot_green {
    height: 10px;
    width: 10px;
    background-color: green;
    border-radius: 50%;
    vertical-align: center;
    display: inline-block;
"
}

.table-properties thead th {
    background: #e2e3e5;
}

.dash-shadow {
    box-shadow: 5px 5px 20px  silver;
}

.dash-card {
    background: white;
    border: none;
}
.card-radius {
    border-radius: 10px
}
.badge-custom {
    margin-left: 20px;
}
.marker-dashboard-dot {
    pointer-events: none;
    position: relative;
    background-color: #003E6B;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
    transform: translate(-50%, -50%);
}

.marker-dashboard-dot::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #2A93EE;
    animation: pulse 3s infinite;
}

.marker-dashboard-dot::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 19px;
    height: 19px;
    top: -2px;
    left: -2px;
    box-sizing: border-box;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}