 body {
        background-color: #f8f9fa;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
 }

/* ============================================================================
   Breadcrumb Styles (Global)
   ============================================================================ */

/* Reset estilos por defecto de Bootstrap */
nav.breadcrumb {
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 24px;
}

/* Estilos personalizados para el breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #f3f4f6 100%);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
}

.breadcrumb-item {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    display: inline-flex;
    align-items: center;
    margin: 0 8px;
    color: #d1d5db;
    font-size: 18px;
}

.breadcrumb-item a {
    color: #4361ee;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.breadcrumb-item a:hover {
    background-color: rgba(67, 97, 238, 0.1);
    color: #3b51d4;
}

.breadcrumb-item.active {
    color: #1f2937;
    font-weight: 600;
    padding: 4px 8px;
}
