.container-buscador-input {
    display: flex;
    width: 100%;
    /*justify-content: space-between;*/
}

.btn-buscador-general-donde-cuando {
    flex: 1 1 40%;
    margin-right: 5%;
    box-sizing: border-box;

    text-align: left;
    background: #FFF;
    border: none;
}

.btn-buscador-general-donde-cuando:hover {
    font-weight: bold;
}

.submit-button {
    flex: 1 1 20%;
    box-sizing: border-box;
}


.container-box-buscador {
    display: flex;
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
    flex-wrap: wrap;
    max-width: 100%;
    max-height: 100%;
    gap: 8px; /* Añade espacio entre las cajas */
}

.box-buscador {
    width: 100px;
    height: 100px;
    background-color: #4CAF50;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-weight: bold;
    text-shadow: 2px 2px #002;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 5px 0; /* Ajuste del margen */
}

.box-buscador:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 6px 25px !important;
    transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.buscador-borde-redondo {
    border-radius: 50px;
}

.calendario-buscador-container {
    display: flex;
    justify-content: space-around;
    width: 100%; /* Ocupa todo el ancho disponible */
    padding: 20px;
    box-sizing: border-box;
}

.calendario-buscador-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 45%; /* Cada año ocupa el 45% del ancho disponible */
}

.calendario-buscador-months {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.calendario-buscador-month {
    flex: 1 0 21%; /* Ocupa el 21% del contenedor, ajustado para margen */
    height: 70px;
    margin: 5px;
    background-color: #FFF;
    border: none;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
}

.calendario-buscador-month:hover:not(.disabled) {
    border: 2px solid #45a049;
    border-radius: 10px;
}

.calendario-buscador-month.disabled {
    background-color: rgba(153, 153, 153, 0.12);
    cursor: not-allowed;
}

.top-aventura-buscador:hover {
    transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.buscador-card-custom-shadow {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(204, 204, 204, 0.8);
    box-shadow: 0px 0px 30px 0px rgba(204, 204, 204, 0.8) !important;
    border: 0;
}

#txt-buscador-principal-donde:focus {
    outline: none; /* Elimina el contorno predeterminado */
    border: none; /* Elimina el borde */
}

/* Placeholder normal */
#txt-buscador-principal-donde::placeholder {
    color: black; /* Color del placeholder cuando el input no está activo */
}

/* Placeholder cuando el input está activo */
#txt-buscador-principal-donde:focus::placeholder {
    color: #CCC; /* Cambia el color a gris cuando el input está activo */
}


@media screen and (max-width: 640px) {

    .box-buscador {
        width: 85px !important;
        height: 85px !important;
    }
}