﻿.catalogo-vacio {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    height: 100%;
    color: #444;
}

    .catalogo-vacio .mensaje h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

    .catalogo-vacio .mensaje p {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .catalogo-vacio .btn-configurar {
        padding: 10px 20px;
        background-color: #007bff;
        border: none;
        color: white;
        border-radius: 15px;
        font-size: 20px;
        cursor: pointer;
        width: 50%;
        margin-bottom: 1rem;
    }

        .catalogo-vacio .btn-configurar:hover {
            background-color: #0056b3;
        }

    .catalogo-vacio img {
        max-width: 700px;
        opacity: 0.7;
    }

.card-producto-catalogo {
    border: 0;
    border-radius: 12px;
    box-shadow: 4px 3px 14px #dddcdc;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    padding: 10px;
}