body, html {
margin: 0;
padding: 0;
height: 100%;
overflow: auto;
font-family: 'Roboto', Arial, sans-serif;
background-color: #333333; 
color: #FFFFFF; 
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 1024px) {
body, html {
overflow: hidden;
}
}
@media (hover: hover) and (pointer: fine) {
body, html::-webkit-scrollbar {
width: 9px; 
height: 9px;
display: initial; 
}

body, html::-webkit-scrollbar-thumb {
background-color: red; 
border-radius: 5px; 
}

body, html::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.5); 
}

body, html::-webkit-scrollbar-corner {
background-color: transparent; 
}
}
hr {
border: 1px solid #686868;
}

a {
color:#fff;
text-decoration: none;
}
.parent {
display: flex;
}

.top-nav {
background-color: #333;
color: white;
width: 100%;
padding: 10px;
z-index: 1000;
display: flex;
align-items: center;
justify-content: space-between; 
box-sizing: border-box; 
overflow: hidden;
height: 5rem; 
position: fixed; 
top: 0; 
}

.top-nav i {
font-size: 35px;
margin-left: 10px; 
cursor: pointer;
}

.top-nav span {
font-size: 18px;
text-align: center; 
flex-grow: 1; 
display: inline-block; 
margin: 0 auto;
margin-left: -35px;
}
.verified_acc_set {
height: 20px;
width:20px;
color: rgb(29, 155, 240);
position: relative; top:4px; left:5px;
cursor:pointer;
}

.sidebar {
width: 15%;
background-color: #222; 
color: #fff;
padding: 20px;
box-sizing: border-box;
font-weight: 800;
}
.sidebar_main {
position: fixed;
left: 0;
top:5rem;
width: 14.7%;
}
.sidebar-header {
display: flex;
border-bottom: 1px solid grey;
padding: 10px;
}
.sidebar-header i {
font-size: 20px;
position: relative;
top:4px;
}

.sidebar-header h3 {
font-size: 19px;
}
.sidebar-menu {
list-style-type: none;
padding: 10px;
}
.sidebar-menu li a {
color: #fff;
text-decoration: none;
display: block;
transition: 0.3s;
font-size: 20px;
margin-bottom: 30px;
}
.sidebar-menu i {
font-size: 22px;
position: relative;
top:4px;
}
.main-content {
flex-grow: 1;
overflow-y: hidden;
padding: 20px;
margin-top: 5rem;
width: 85%;
height: 100vh;
}

.userinfo {
background-color: #4f4d4d;
position: relative;
left:0;
right:0;
padding: 5px 20px;
border-radius: 10px;
}
.userinfo span{
position: relative;
top:-7px;
}

.verified_acc_set {
height: 20px;
width:20px;
color: rgb(29, 155, 240);
position: relative; top:4px; left:5px;
cursor:pointer;
}

.profile_pic {
height: 100px;
width: 100px;
border-radius: 100%;
margin-top: 10px;
}
.profile_pic img {
object-fit: cover; 
width: 100%; 
border-radius: 100%;
height: 100%; 
}
.options_con {
position: relative;
left:0;
right:0;
padding: 5px 20px;
}
.options_con span{
position: relative;
top:-7px;
cursor: pointer;
}
.flexbox {
font-size: 24px;
display: flex;
padding: 5px 20px;
padding-inline-start: 4px;
}
.flexbox i {
margin-right:20px;
cursor: pointer;
}
.dcl {
display: none;
}
.footer {
text-align: center;
}


/* Mobile Responsive */
/*-------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1024px){
.parent {
display: flex;
flex-direction: column;
height: 100%;
}
.sidebar {
display: none; 
}
.main-content {
box-sizing: border-box;
flex-grow: 1;
overflow-y: auto;
padding: 20px;
margin-top: 5rem;
width: 100%;
}
@media (hover: hover) and (pointer: fine) {
.main-content::-webkit-scrollbar {
width: 9px; 
height: 9px;
display: initial; 
}

.main-content::-webkit-scrollbar-thumb {
background-color: red; 
border-radius: 5px; 
}

.main-content::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.5); 
}

.main-content::-webkit-scrollbar-corner {
background-color: transparent; 
}
}
.dcl {
display: block;
}
}
