html {
    height: 100vh;
}

body {
    height: 100%;
    overflow: hidden;
}

.container-fluid {
    height: calc(100% - 72px);
    overflow: auto;
    overflow-x: hidden;
}

.container-fluid::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.container-fluid::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
}

#nav_logout {
    color: #fff;
    text-decoration: unset;
}

.look_icon {
    font-size: 18px;
}

.show_nav_style {
    display: flex;
    flex-direction: column;
    position: relative;
}

.show_nav_style::after {
    content: '';
    width: 100%;
    height: 62%;
    background: transparent linear-gradient(275deg, #FAFBFC 0%, #ffc1076b 100%) 0% 0% no-repeat padding-box;
    top: 11px;
    left: 5px;
    position: absolute;
}

.navbar {
    box-shadow: 0px 3px 5px #00000026;
    z-index: 1;
}

.login_card {
    width: 400px;
    background-color: #c7ccce !important;
}

.error_msg {
    width: 400px;
    z-index: 5;
}

.input-group-prepend span {
    width: 50px;
    background-color: #e4deca;
    color: black;
    border: 0 !important;
    text-align: center;
    display: inline-block;
}

.logout_style {
    border: 2px solid #5591be;
    padding: 4px 11px;
    border-radius: 20px;
    color: #fff;
    background: #5591be;
    font-weight: 600;
    cursor: pointer;
}

.page_list {
    display: flex;
    gap: 1.5rem;
}

.page_list a {
    color: #5591be;
    text-decoration: unset;
    font-weight: 600;
    z-index: 2;
}

.page_list a.active {
    color: #fff;
    border: 1px solid #5591be;
    background: #5591be;
    padding: 5px 8px;
    border-radius: 20px;
}