.filtro-recetas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 20px auto 20px auto;
}

.filtro-recetas input, .filtro-recetas select, .filtro-recetas button {
    padding: 10px;
    font-size: 16px;
}

.recetas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 5rem auto 0 auto;
}

.receta-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(33.333% - 20px);
    min-height: 255px;
}

.receta-content a {
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.receta-card {
    width: calc(33.333% - 20px);
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-size: cover !important;
    min-height: 255px;
    width: 100%;
    position: relative;
}

.receta-votar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.receta-votar button {
    background: #e60023;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.paginacion {
    max-width: 1200px;
    width: 100%;
    margin: 2rem auto 2rem auto;
    text-align: center;
}
