/**
 * Modern Breadcrumbs Styling
 */

/* Breadcrumbs Container */
.breadcrumbs-wrapper {
    padding: 1rem 0;
    background-color: var(--el-bg-color-page, #f2f3f5);
    border-bottom: 1px solid var(--el-border-color-lighter, #ebeef5);
    margin-bottom: 1.5rem;
}

/* Breadcrumbs List */
.breadcrumbs-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    font-family: var(--el-font-family, 'Poppins', Arial, sans-serif);
    line-height: 1.6;
    color: var(--el-text-color-regular, #606266);
}

/* Breadcrumbs Items */
.breadcrumbs-item {
    display: flex;
    align-items: center;
    font-size: var(--el-font-size-base, 14px);
    font-weight: 500;
}

.breadcrumbs-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--el-text-color-placeholder, #a8abb2);
}

.breadcrumbs-item a {
    color: var(--el-color-primary, #6449b3);
    text-decoration: none;
    transition: var(--el-transition-color, color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1));
}

.breadcrumbs-item a:hover {
    color: var(--autoTdkExtThemeHoverBgDeepColor, #6449b3);
    text-decoration: underline;
}

.breadcrumbs-item:last-child {
    color: var(--el-text-color-secondary, #909399);
    font-weight: 400;
}

/* Navigation Links (Back Button) */
.navigation-links {
    margin-top: 1rem;
}

.btn.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--el-color-primary, #6449b3);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--el-border-radius-base, 4px);
    font-size: var(--el-font-size-base, 14px);
    font-weight: 500;
    text-decoration: none;
    transition: var(--el-transition-all, all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1));
    cursor: pointer;
}

.btn.btn-primary:hover {
    background-color: var(--autoTdkExtThemeHoverBgDeepColor, #6449b3);
    box-shadow: var(--el-box-shadow-light, 0px 0px 12px rgba(0, 0, 0, 0.12));
}

.btn.btn-primary i {
    font-size: 0.9em;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .breadcrumbs-wrapper {
        padding: 0.75rem 0;
    }
    
    .breadcrumbs-item {
        font-size: var(--el-font-size-small, 13px);
    }
    
    .btn.btn-primary {
        padding: 0.4rem 0.8rem;
        font-size: var(--el-font-size-small, 13px);
    }
}
