/* Copiar exactamente el estilo del listado de clientes */

/* Estilos base del listado de clientes */
#clienteTabsContent .tab-pane .form-label { 
    margin-bottom: 0.2rem; 
    font-size: 0.85rem;
}

#clienteTabsContent .tab-pane .btn-group .btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.8rem;
}

#clienteTabsContent .tab-pane .table td {
    padding: 0.3rem 0.5rem;
    vertical-align: middle;
}

#clienteTabsContent .tab-pane .table th {
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
}

/* Tabla exactamente igual al listado de clientes */
#clienteTabsContent .tab-pane .table {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
    margin-bottom: 0;
    font-size: 0.9em;
    border: 1px solid #dee2e6;
}

/* Header exactamente igual al listado de clientes */
#clienteTabsContent .tab-pane .table thead {
    background-color: #f1f4f8;
}

#clienteTabsContent .tab-pane .table thead th {
    background-color: #f1f4f8;
    color: #212529;
    border-color: #dee2e6;
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
}

/* Body exactamente igual al listado de clientes */
#clienteTabsContent .tab-pane .table tbody tr {
    transition: background-color 0.2s ease;
}

#clienteTabsContent .tab-pane .table tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.05);
}

#clienteTabsContent .tab-pane .table td {
    padding: 0.3rem 0.5rem;
    vertical-align: middle;
}

/* Botones exactamente igual al listado de clientes */
#clienteTabsContent .tab-pane .btn {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#clienteTabsContent .tab-pane .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Card exactamente igual al listado de clientes */
#clienteTabsContent .tab-pane .card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.5rem;
}

#clienteTabsContent .tab-pane .card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#clienteTabsContent .tab-pane .card-body {
    padding: 0.5rem;
} 