.leaflet-control-search-rua {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #1C222B;
    /*border: 1px solid #ccc;
    border-radius: 4px;*/
    padding: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    padding: 0.50rem;
}

.ma-search-input {
    flex-grow: 1;
    margin-left: 0.5rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    /*border-radius: 4px;*/
    outline: none;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 350;
    position: relative; /* isto garante que a lista de sugestões de ruas (div.autocomplete-items) fique posicionada em relação a este input */

    /* estilos para ellipsis */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* em mobile temos de reduzir o tamanho da caixa */
@media (max-width: 767.98px) {
  .ma-search-input {
    max-width:200px;
  }
}

.ma-search-input.hidden {
    display: none;
}

/*.ma-search-input:not(.hidden) {
    display: inline-block;
}*/

.autocomplete-items {
    position: absolute;
    top: 100%; /* Fica abaixo do input */
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #d4d4d4;
    border-top: none; /* Remove a borda superior para ficar colado ao input */
    max-height: 200px; /* Limita a altura da lista */
    overflow-y: auto; /* Para rolar se a lista for maior que a altura */
    z-index: 999; /* Fica acima de outros elementos */
    
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    font-family: "Poppins",sans-serif;
    font-size: 14px;
    font-weight: 350;
}

.autocomplete-items div {
    padding: 5px 8px 5px 8px;
    cursor: pointer;
}

.autocomplete-items div:hover {
    background-color: #e9e9e9;
}

.autocomplete-active {
    background-color: #e0e0e0;
    cursor: pointer;
}

.container-notificacoes > .alert-light {
    font-size: 1.2rem;
    font-style: normal;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    border: 1px solid #D7DFE9;
background-color: #FFFFFF;
}
.container-notificacoes p {
    margin-top: 0;
    margin-bottom: 0;
}
.chkNot {
    font-size: 1.2rem;
    font-style: normal;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    letter-spacing: 0.08px;
    margin: 8px 2px 0 10px;
}

.sp-notas {
    background-size: 28px 28px;
    width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}
.sp-nota1 {
    background-image: url("../Icons/nota1.svg");

}
.sp-nota2 {
    background-image: url("../Icons/nota2.svg");
}

.sp-walk {
    background-image: url("../Icons/walk.svg");
    background-size: 18px 18px;
    width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
}

.ma-rua-reset {
    padding: 0 10px 0 10px;
}

.sug {
    font-family: "Poppins",sans-serif;
    font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #1C222B;
  margin: 0;
}

.sug-m {
    margin-top:18px;
}

.leaflet-popup-content {
    margin: 28px 24px 13px 20px;
}




