.breadcrumb {
    display: inline-block; /* Ensure the container only wraps its content */
    margin-left: 20px;
    z-index: 10;
    white-space: nowrap; /* Prevent the breadcrumb items from wrapping to the next line */
}

.breadcrumb-container {
    display: flex;
    justify-content: flex-start; /* Align the breadcrumb to the start */
    overflow: hidden; /* Hide overflow */
    padding: 30px 0; /* Adjust padding as needed */
    margin: 0 50px; /* Adjust margin as needed */
}


.breadcrumb ol {
    display: inline-block; /* Ensure the list wraps to its content size */
    list-style: none;
    padding: 0;
    margin: 0; /* Remove default margin */
    color: #416ca3; /* Primary breadcrumb color */
}

.breadcrumb li {
    display: inline; /* Ensure items flow inline */
    margin-right: 10px;
}

.breadcrumb li::after {
    content: '\f105'; /* Font Awesome right arrow */
    font-family: 'Font Awesome 5 Free'; /* Ensure this matches the Font Awesome version you include */
    font-weight: 900; /* Necessary for Font Awesome solid icons */
    margin: 0 5px; /* Spacing around the separator */
}

.breadcrumb li:last-child::after {
    content: none; /* No separator after the last item */
}

.breadcrumb a {
    text-decoration: none;
    color: #416ca3; /* Same as the text color for consistency */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.breadcrumb a:hover, .breadcrumb a:focus {
    color: #2a4d69; /* Darker blue for hover */
    text-decoration: none; /* Optional: Prevents underlining the link on hover */
}

.breadcrumb [aria-current="page"] {
    color: grey; /* Current page styling */
    pointer-events: none; /* Disables link functionality */
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

#calendar {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
