/* Glassmorphism Effect for Breadcrumbs */
.breadcrumb {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(5px);
    font-size: 0.85rem;
    letter-spacing: 0.3px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* FontAwesome Angle Right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ced4da;
}

/* Content Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .content-header h1 { font-size: 1.5rem; }
    .breadcrumb {
        float: none !important;
        justify-content: center;
        display: flex;
    }
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #adb5bd; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #6c757d; }
