/* _content/Pedigree/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Top Ribbon remains fixed at the very top */
.sticky-top-ribbon[b-venzn6h1jp] {
    position: sticky;
    top: 0;
    z-index: 1050;
}
/* Notification Ribbon fixed below the top ribbon */
.sticky-notification[b-venzn6h1jp] {
    position: sticky;
    top: 80px; /* Adjust based on your top ribbon height */
    z-index: 1040;
}

/* Sidebar remains sticky below both ribbons */
.sticky-sidebar[b-venzn6h1jp] {
    position: sticky;
    top: 140px;
}
/* Sidebar collapse styles */
#sidebarColumn[b-venzn6h1jp] {
    transition: width 0.3s ease;
}

.collapsed-sidebar[b-venzn6h1jp] {
    display: none;
}

.disabled[b-venzn6h1jp] {
    color: #6c757d !important; /* Bootstrap's default disabled color */
    pointer-events: none; /* Prevents clicking the link */
    cursor: not-allowed;
}
#mpfwct[b-venzn6h1jp] {
    font-size: 2.5rem;
}

@media (max-width: 576px) { /* Extra Small Screens */
    #mpfwct[b-venzn6h1jp] {
        font-size: 1.8rem;
    }
}
.footercopyright[b-venzn6h1jp] {
    min-height: 50px;
    padding: 10px;
}
@media (max-width: 768px) {
    #mainContent[b-venzn6h1jp] {
        margin-left: 0 !important; /* Ensure content isn't pushed */
    }
}

.btn-avatar[b-venzn6h1jp] {
    background-color: transparent;
    border: none;
    padding: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.2s ease;
}
    .btn-avatar:hover[b-venzn6h1jp] {
        transform: scale(1.05);
        background-color: rgba(0, 0, 0, 0.05); /* light hover effect */
    }
    .btn-avatar img[b-venzn6h1jp] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    .btn-avatar .initials[b-venzn6h1jp] {
        font-weight: bolder;
        color: white;
        background-color: #6c757d; 
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        border-radius: 50%;
    }
