.mb-5 {
    margin-right: 5rem !important;
}

/* front-top-menu mobile and animation */

.bg-light1 {
    --bs-bg-opacity: 1;
    background-color: rgb(33 48 60) !important;
}

 /* Remove default icon */
.navbar-toggler .navbar-toggler-icon {
    display: none;
}


/* Custom hamburger bars */
.navbar-toggler {
    width: 30px;
    height: 24px;
    position: relative;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #35434a;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.top-bar {
    top: 0;
}

.middle-bar {
    top: 10px;
}

.bottom-bar {
    bottom: 0;
}

/* Animation when open */
.navbar-toggler[aria-expanded="true"] .top-bar {
    transform: rotate(45deg);
    top: 10px;
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
    transform: rotate(-45deg);
    bottom: 11px;
}

.nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}

.nav-link.active i {
    transform: scale(1.1);
}

.nav-link {
    transition: all 0.3s ease;
    color: #ffffff;
}

.nav-link i {
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

button span {
    transition: opacity 0.2s ease;
}

.invalid-feedback {
    color: #fbf16e;
}

 .fade-hold { opacity: 1; transition: opacity 0.6s ease; }


 /* footer */
.app-footer {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 0;
    border-top: 1px solid var(--bs-border-color);
    font-weight: 600;
    color: rgba(var(--bs-body-color-rgb), 0.5);
    margin-left: 0rem;
    margin-right: 0rem;
}

body {
    background: 0 0;
    font-weight: var(--bs-body-font-weight);
    letter-spacing: inherit;
    position: relative;
    min-height: 100vh;
    z-index: 9999;
}

.footer-link {
    text-decoration: none;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #0d6efd;
}

.footer-link.active {
    color: #0d6efd;
}

    .cap-small {
        text-transform: capitalize;
        font-size: 14px;
        font-weight: bold;
    }

        .btnhide {
            opacity: 0.2; /* Adjust opacity (0 is fully transparent, 1 is fully visible) */
            background-color: #44555e; /* Optional: you can also make the background lighter */
            pointer-events: none;  /* This will disable any interaction with the row */
        }


        .normal {
            opacity: 1; /* Adjust opacity (0 is fully transparent, 1 is fully visible) */
            background-color: transparent; /* or any other default color */
        }

        .hidden {
        display:inline;
        opacity: 0.2;
        pointer-events: none;
    }
    .disabled {
        pointer-events: none;
        opacity: 0.6;
        cursor: not-allowed;
    }

   .menu-header {
    text-align-last: left !important;
    /* text-align-last: center !important; */
    font-weight: bold !important;
    font-size: large !important;
}
.app-sidebar-content {
    overflow-y: auto;
    overflow-x: hidden;
}

.app-sidebar-content::-webkit-scrollbar {
    width: 0px;
}

#content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.data-management {
    flex: 1;
    overflow-y: auto;
}


.card {
    overflow-y: auto;
}
#image-preview {
    width: 100%;
    height: 250px;
    object-fit: contain;
    /* border: 2px solid #798e98; */
    margin: 10px 0;
    padding: 2px;
    border-radius: 10px;

}