/* Estilos Generales para Perro Viejo CRUD */
.pv-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 20px;
}

.pv-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

/* Tabla Moderna */
.pv-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pv-table th {
    background-color: #f9fafb;
    padding: 16px;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-bottom: 2px solid #f3f4f6;
}

.pv-table td {
    padding: 16px;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.pv-table tr:hover {
    background-color: #f0f7ff;
}

/* Inputs y Formulario */
.pv-input {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    transition: border-color 0.2s;
}

.pv-input:focus {
    border-color: #2563eb;
    outline: none;
    ring: 2px solid #3b82f6;
}

/* Botones */
.pv-btn-primary {
    background-color: #2563eb;
    color: white;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.pv-btn-primary:hover {
    background-color: #1d4ed8;
}

/* Badge de Digestibilidad */
.digest-high { color: #059669; font-weight: bold; }
.digest-med { color: #2563eb; font-weight: bold; }
.digest-low { color: #d97706; font-weight: bold; }