/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
body .leaflet-container .leaflet-tile-pane {
    filter: grayscale(100%);
}

body .leaflet-container .leaflet-tile-pane:hover {
    filter: none;
}

.search-input {
    float:left!important;
    position:relative!important;
    left: 0px!important;
    background-color: transparent!important;
    border: none!important;
    outline: none!important;
    width:80%!important;
    height: 100%!important;
    padding: 2px 0 2px 10px!important;
    border:0!important;
}

.pulsing-marker {
    background-color: orange;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: relative;
}

.pulse {
    background: rgba(255, 165, 0, 0.5);
    border-radius: 50%;
    border: 2px solid white;
    height: 20px;
    width: 20px;
    position: absolute;
    transform: scale(0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 136, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 136, 0, 0);
    }
}
