.grid-locals{
    margin-top: 100px;
    min-height: 3rem;
    min-width: 2rem;
}

.local__block {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    background-color: #fff;
}

.local__block__container {
    display: flex;
}

.local__block__image {
    width: 200px;
    height: auto;
    background-size: cover;
    background-position: center;
}

.local__block__content {
    flex: 1;
    padding: 30px;
}

.local__block__title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 10px;
}

.local__block__description {
    color: #666;
    margin: 0 0 20px;
    line-height: 1.4;
}

.local__block__info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
}

.status {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #000;
}

.status-indicator-disponible {
    width: 20px;
    height: 20px;
    background-color: #97D700;
    border-radius: 50%;
    padding-right: 18px;
}

.status-indicator-no-disponible {
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 8px;
}

.status-text {
    font-size: 16px;
    margin-left: 10px;
}

.local__block__price {
    color: #333;
}

.local__block__import__valor{
    font-size: 16px;
}
.local__block__availability {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 70px;
}

.available {
    color: #28a745;
    font-weight: bold;
}

.not-available {
    color: #dc3545;
    font-weight: bold;
}

.local__block__button {
    margin-left: auto;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2B2E;
    background-color: #97D700;
    text-decoration: none;
    align-items: center;
    display: flex;
    transition: background-color 0.3s ease;
}

.local__block__button:hover {
    background-color: #97d70080;
    color: #1F2B2E !important;
}

.load-more {
    margin-left: auto;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2B2E;
    background-color: #97D700;
    text-decoration: none;
    align-items: center;
    transition: background-color 0.3s ease;
}

.load-more:hover {
    background-color: #97d70080;
}


/* Contenedor principal */
.filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f2f2f2;
    padding-top: 20px;
    padding-bottom: 20px;
}

.filter-select{
    position: relative;
    display: inline-block;
    width: 100%; /* Ajusta el ancho según sea necesario */
    border: 1px solid #000; /* Borde negro */
    background-color: #fff;
}
/* Estilos para cada select */
.filter-select select::-ms-expand {
    display: none;
}
.filter-select select {
    width: 100%;
    font-size: 14px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    position: relative;
}
.filter-select i.dropdown-arrow{
    position: absolute;
    top: 0;
    right: 0;
    width: 40px; /* Ancho del área de la flecha */
    height: 100%;
    background-color: #97d700; /* Verde para la flecha */
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* Permite hacer clic a través de la flecha */
}
 
.filter-select i.dropdown-arrow::before {
    content: '';
    display: inline-block;
    border: 6px solid transparent; /* Flecha triangular */
    border-top-color: #000; /* Color de la flecha (negro) */
    margin-top: 2px;
}

/* Botón de búsqueda */
.filter-button {
    font-size: 14px;
    font-weight: 500;
    color: #1F2B2E;
    font-family: 'Open Sans', sans-serif;
    background-color: #97D700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
    min-height: 64px;
    padding-left: 10px;
    width: 211px;
    justify-content: center;
}

.filter-button:hover {
    background-color: #97d70080;
}

.filter-button span {
    font-size: 18px;
}

@media (max-width: 767px){
    .filter-container {
        display: block;
    }
    .local__block__container {
        display: block;
    }
    .local__block__info {
        display: block;
    }
    .local__block__availability {
        padding-left: 0px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .dhvc-form-group .dhvc-form-radio {
        display: inline-grid;
    }
}