/* --- Breadcrumb Header Global Style --- */
.breadcrumb-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.back-button:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    transform: translateX(-2px);
}

.back-button i {
    font-size: 1.25rem;
}

.breadcrumb-content {
    flex: 1;
}

.breadcrumb-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.breadcrumb-path {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #2563eb;
    text-decoration: underline;
}

.breadcrumb-item {
    color: #6b7280;
}

.breadcrumb-separator {
    color: #9ca3af;
}

.breadcrumb-current {
    color: #111827;
    font-weight: 500;
}

/* Dark mode support for breadcrumbs */
html.dark .back-button {
    background-color: #374151;
    border-color: #4b5563;
    color: #ffffff;
}

html.dark .back-button:hover {
    background-color: #4b5563;
    border-color: #6b7280;
}

html.dark .breadcrumb-title {
    color: #ffffff;
}

html.dark .breadcrumb-link {
    color: #60a5fa;
}

html.dark .breadcrumb-link:hover {
    color: #93c5fd;
}

html.dark .breadcrumb-item {
    color: #9ca3af;
}

html.dark .breadcrumb-current {
    color: #ffffff;
}