/*
Theme Name:   hostinger-blog Hijo
Description:  hostinger-blog
Author:       hostinger-blog
Author URL:   hostinger-blog
Template:     hostinger-blog
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  hostinger-blog-hijo
*/

/* Añade aquí tus estilos personalizados */


/* CONTENEDOR GENERAL */
.searchandfilter {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: inherit;
}

/* LISTA */
.searchandfilter ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

/* ITEMS */
.searchandfilter li {
    display: flex;
    align-items: center;
}

/* SELECTS */
.searchandfilter select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    appearance: none;
}

/* Hover y focus */
.searchandfilter select:hover,
.searchandfilter select:focus {
    border-color: #c7a45b; /* dorado elegante */
    background-color: #fff;
    outline: none;
}

/* BOTÓN */
.searchandfilter input[type="submit"] {
    padding: 0.8rem 1.5rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #c7a45b, #a8893e);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

/* Hover botón */
.searchandfilter input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .searchandfilter ul {
        grid-template-columns: 1fr;
    }

    .searchandfilter input[type="submit"] {
        width: 100%;
        text-align: center;
    }
}


