/* ERP Carihuela - Estilos base */

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f0f2f5;
    margin: 0;
}

/* Cards del dashboard */
.card {
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.15s;
}

.card-link {
    text-decoration: none;
    color: inherit;
}

.card-link .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Breadcrumbs */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
}
