::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #DADADA;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ADADAD;
}
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
	font-size: 14px;
	font-weight: 500;
	font-optical-sizing: auto;
	font-style: normal;
	color: white;
}
body{
	height: 100vh;
	background: #0E0F14;
}
.blur{
	filter: blur(10px);
	pointer-events: none;
	user-select: none;
}
.no-scroll {
    overflow: hidden;
}
#sidebar{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 200px;
	padding: 10px;
	background: #18181E;
	transition: all 0.5s ease;
	z-index: 999;
	overflow: hidden;
}
#sidebar #nav-header{
	display: flex;
	align-items: center;
	height: 40px;
}
#sidebar #nav-header img{
	width: 40px;
	height: 100%;
	margin-right: 12px;
	opacity: 1.0;
	transition: all 0.5s ease;
}
#sidebar #nav-header p{
	font-size: 16px;
	font-weight: 700;
	opacity: 1.0;
	user-select: none;
	transition: all 0.5s ease;
}
#sidebar #nav-header span{
	position: absolute;
	right: 18px;
	cursor: pointer;
	user-select: none;
	transition: all 0.5s ease;
}
#sidebar #nav-list{
	margin-top: 25px;
}
#sidebar #nav-list div{
	display: flex;
	align-items: center;
	margin-top: 10px;
	height: 40px;
	border: 2px solid transparent;
	border-radius: 5px;
	transition: all 0.5s ease;
	user-select: none;
	cursor: pointer;
}
#sidebar #nav-list .tooltip{
	position: fixed;
	left: 70px;
	margin: auto;
	height: 25px;
	padding: 0 10px;
	color: #18181E;
	background: white;
	border-radius: 5px;
	display: none;
	transition: all 0.5s ease;
}
#sidebar #nav-list div:hover{
	border-color: white;
}
#sidebar #nav-list div .material-symbols-rounded{
	margin-left: 7px;
	margin-right: 20px;
}
#sidebar footer{
	height: 100px;
}
#sidebar.collapse{
	width: 60px;
}
#sidebar.collapse #nav-header img, #sidebar.collapse #nav-header p{
	opacity: 0.0;
}
#sidebar.collapse #nav-header span{
	transform: rotate(180deg);
}
#sidebar.collapse ul li{
	width: 40px;
}
#sidebar.collapse #nav-list div:hover .tooltip{
	display: block;
}
main{
	position: absolute;
	right: 0px;
	top: 0px;
	width: calc(100% - 60px);
	padding: 20px;
	transition: all 0.5s ease;
}
.analytics{
	width: 90%;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.analytics div {
	background-color: #18181E;
	height: 120px;
	margin: 15px;
	padding: 10px;
	border-radius: 10px;
	position: relative;
	flex: 1 1 calc(33.33% - 30px);
	box-sizing: border-box;
}

.analytics p {
	margin: 0;
	color: white;
	font-weight: bold;
}

.text-left {
	font-size: 20px;
	text-align: left;
	position: absolute;
	top: 10px;
	left: 15px;
}

.text-center {
	font-size: 40px;
	text-align: center;
}

main div .title{
	font-size: 36px;
	font-weight: 700;
	margin-left: 160px;
	transition: all 0.5s ease;
	user-select: none;
}
#sidebar.collapse + main div .title{
	margin-left: 20px;
}
.toolbar{
	display: flex;
	justify-content: flex-end;
	width: 80%;
	min-width: 700px;
	height: 30px;
	margin: 20px auto;
}
.toolbar .add-button span{
	margin: auto 20px;
	font-size: 30px;
	cursor: pointer;
	user-select: none;
}
.toolbar .searchbar{
	display: flex;
	align-items: center;
	width: 250px;
	height: 30px;
	margin-right: 20px;
	border-radius: 15px;
	background: white;
	float: right;
}
.toolbar .searchbar span{
	align-items: center;
	margin: auto 5px;
	color: #767676;
}
.toolbar .searchbar input{
	width: 220px;
	height: 30px;
	border-top-right-radius: 15px 15px;
	border-bottom-right-radius: 15px 15px;
	color: #0E0F14;
	outline: none;
	border: none;
}
.table{
	border-collapse: collapse;
	width: 80%;
	min-width: 700px;
	margin: auto auto;
	background: #18181E;
	border-radius: 5px;
}
.table thead {
	height: 35px;
}
.table thead tr th{
	font-size: 18px;
	font-weight: 700;
	user-select: none;
}
.table tbody td{
	height: 35px;
	border-top: 2px solid #0E0F14;
}
.table tbody .status-col div{
	width: 15px;
	height: 15px;
	border-radius: 5px;
	margin: auto auto; 
}
.table tbody .action-col span{
	margin: 4px 5px;
	text-align: center;
	user-select: none;
	cursor: pointer;
}

.popup{
	display: none;
	z-index: 1000;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 250px;
	padding: 20px 20px;
	background: #18181E;
	border-radius: 10px;
	box-shadow: 5px 5px 10px black;
	user-select: none;
}
.active-popup{
	display: flex;
}
.popup form p{
	margin-bottom: 10px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
}
.popup form label{
	font-weight: bold;
}
.popup form input{
	width: 210px;
	height: 15px;
	padding-bottom: 2px;
	margin-top: 10px;
	margin-bottom: 15px;
	background: #18181E;
	border: none;
	border-bottom: 2px solid #3A3A3A;
	outline: none;
}
.popup .close-popup-button{
	font-size: 24px;
	font-weight: bold;
	position: absolute;
	top: 5px;
	right: 10px;
	cursor: pointer;
}
.submit-button{
	background: #3A3A3A;
	border: none;
	border-radius: 5px;
	color: white;
	font-weight: bold;
	width: 100%;
	height: 30px;
	margin-top: 10px;
	cursor: pointer;
}