/* styles.css */
body {
    margin: 0;
    font-family: var(--font-family);
}

main{
    display: flex !important;
    /* width: 100vw; */
    background-color: var(--bg-1);
}

#navbar-element {
    display: flex;
    height: 100vh;
    background-color: #F2F2F2;
    border-right: 1px solid var(--text-1);
    box-sizing: border-box;
    position: relative;
}


#navbar-element ul {
    padding: 0;
    margin: 0;
    overflow-y: scroll;
    height: 100%;
}

#navbar-element ul::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

#access-dropdown-custom{
    margin-left: 20px;
    position: absolute !important;
    top: 20px !important;
    z-index: 10000 !important;
    border: var(--text-1) 1px solid;
    border-radius: 5px;
    background-color: var(--bg-1);
    overflow: visible !important;
}


.theme-dark #navbar-element {
    background-color: var(--bg-1);
    color: white;
}

#close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: black;
}

#picture-user-element{
    display: flex;
    /* justify-content: center;
    align-items: center; */
}

#picture-user-element img{
    width: 100%;
    height: 100%;
    display: none;
    /* object-fit: cover; */

}


.nav-item a, #logout-button > div {
    color: var(--text-0);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    font-size: 1.2rem;
    gap: 10px;
    list-style: none;
    padding: 20px 20px;
    border-bottom: 1px solid var(--text-0);
    border-radius: 0 !important;
    padding-top: 20px;
    cursor: pointer;
    padding-bottom: 20px;
    font-size: 1.2rem;
}

.nav-item-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    text-align: center;
    vertical-align: middle;
    width: 40px;
    height: 40px;
}

.nav-item-user{
    font-size: 1.2rem;
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 30px;
    cursor: pointer;
    padding-bottom: 30px;
    font-size: 1.2rem;
}


.nav-item a:hover {
    text-decoration: none;
    color: var(--text-1);
}

.nav-item:hover i {
    color: #24A068;
    transition: color 0.3s;
}


.hover-border-bottom {
	position: relative !important;
    font-size: 1.1rem;
}

.hover-border-bottom:hover {
	cursor: pointer;
}

.hover-border-bottom::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0px;
	background-color: #24A068;
}
.hover-border-bottom::after {
	transform: scale(0, 1);
	transition: all ease 0.3s;
}
.hover-border-bottom:hover::after {
	transform: scale(1, 1);
	transition: all ease 0.3s;
}


.nav-item-user {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-item-user > .nav-icon-user{
    display: flex;
    background-color: white;
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid rgba(125, 125, 125, 0.2);
    align-items: center;
    justify-content: center;
    color: gray;
    overflow: hidden;
    /* padding-top: 10px; */
    box-shadow: inset rgba(60, 70, 85, 0.5) 0px 0px 2px 0px, inset rgba(60, 70, 85, 0.3) 0px 0px 5px 0px, inset rgba(0, 0, 0, 1) 0px 0px 8px -24px;
}

.nav-icon-user-small > .nav-icon-user{
    height: 30px;
    width: 30px;
}

.nav-item-user > .nav-icon-user i{
    font-size: 110px;
}

.nav-icon-user-small > .nav-icon-user i{
    font-size: 30px;
}

.nav-item:last-child {
    border-bottom: none;
}

.icon {
    width: 30px;
    vertical-align: middle;
    margin-right: 10px;
}

ul {
    padding: 0;
    margin: 0;
    padding-top: 40px;
}

img {
    vertical-align: middle;
}
