html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 10px;
}

.avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav .nav-item:last-child {
    margin-left: auto;
}

.bg-custom {
    background-color: #f8f9fa; /* This matches the Bootstrap bg-light color */
}

footer {
    flex-shrink: 0;
}
.small-text {
    font-size: 0.85rem;
}
.breadcrumb {
    background-color: #f8f9fa;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.25rem;
}