.box-client-info{
    display: none;
}

 /* Contenedor principal con diseño tipo tabla */
 .clientes-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: center;
    text-align: left;
    padding: 10px;
    background-color: #f8f9fa;
    font-weight: bold;
    border-radius: 5px;
}

/* Estilos de cada fila */
.cliente-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px;

}

.cliente-card {
    background: #fff;
    padding: 10px;
    transition: background 0.3s ease;
}

/* Alternar colores: blanco y gris claro */
.cliente-card:nth-child(even) {
    background: #f2f2f2;
}

/* Ocultar títulos en PC */
.cliente-label {
    display: none;
    font-weight: bold;
    color: #555;
}

/* Opciones de botones */
.cliente-options {
    display: none;
    justify-content: center;
    gap: 10px;
}

.cliente-options a {
    text-decoration: none;
}

/* Badges de estado */
.badge {
    padding: 5px 10px;
    border-radius: 5px;
}

.badge-success {
    background-color: #28a745;
    color: white;
}

.badge-info {
    background-color: #17a2b8;
    color: white;
}

/* 📱 RESPONSIVE DESIGN 📱 */
@media (max-width: 1024px) { /* TABLETS */
    .clientes-container {
        grid-template-columns: repeat(2, 1fr);
        font-size: 14px;
    }

    #clientsdelete{
        display: none;
    }

    .cliente-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .cliente-label{
        display: block;
        text-align: center;
    }

    .cliente-label-2{
        display: inline;
    }

    .cliente-options {
        display: flex; /* Mostrar títulos en tablets */
    }
}

@media (max-width: 768px) { /* CELULARES */
    .clientes-container {
        display: none; /* Ocultar cabecera en móviles */
    }

    .cliente-card {
        display: block;
        padding: 15px;
        margin-bottom: 10px;
        border-radius: 5px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }

    .cliente-row {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .cliente-options {
        justify-content: flex-start;
    }
}