/* --- Breadcrumb Styling --- */
.breadcrumb {
    background-color: #f0f0f0; /* Light background for the breadcrumb bar */
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow */
    margin-bottom: 20px; /* Space below breadcrumbs */
    display: flex; /* Ensure items align nicely */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    align-items: center;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: #6c757d; /* Default text color for non-active items */
}

.breadcrumb-item a {
    color: #4A90E2; /* Softer blue for clickable links */
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #304C6A; /* Darker blue on hover */
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "\00BB"); /* Bootstrap's default divider */
}

.breadcrumb-item.active {
    color: #343a40; /* Darker color for the active (current) page */
    font-weight: 600;
    pointer-events: none; /* Make active item not clickable */
}

/* Optional: Adjust margin for container if it conflicts with header */
.container.mt-3 {
    margin-top: 20px !important; /* Adjust as needed */
}

/* Keep previous styles below this line */
/* General Body & Container */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Light background */
}
/* ... rest of your existing CSS ... */