section {
    height: 95%;
    overflow-y: scroll;
}
.request {
    display:flex;
    justify-content: space-between;
}
#requestex {
    display: none;
}
#sentrequestex {
    display:none;
}
#friendex {
    display:none;
}
#allFriends {
    display:flex;
    flex-direction: column;
    gap:5px;
}
/* #allsearched {
    margin-top: 15px;
    margin-bottom: 15px;
    height: 40vh;
    border-radius: 10px;
    width: 30vw;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    display:flex;
    flex-direction: column;
    gap:5px;
    text-align: center;

} */
/* .queryeduser {
    display:flex;
    justify-content: space-between;
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.103);
    text-align: left;
    align-items: center;
}
.queryeduser__actions {
    display:flex;
    gap:5px;
}
.queryeduser__top__username{
    display:flex;
    gap: 5px;
    align-items: center;
}
.queryeduser__top__badges {
    display:flex;
    gap: 3px;
    align-items: center;
} */
#queryedex {
    display:none;
}
.innerinfo {
    color: white;
    text-decoration: none;
    overflow: hidden;
}
.innerinfo:hover {
    text-decoration: underline;
}
.online_dot {
    width: 12px;
    height: 12px;
    background-color: rgb(0, 255, 0);
    border-radius: 50%;
}
.username_field {
    display:flex;
    gap:10px;
}
.friend {
    display: flex;
    align-items: center;
    gap:5px;
}
#tabs{
    display: flex;
    gap:10px;
}
#tabs > * {
    flex:1;
    font-size: 1.25rem;
}
.side{
    display: flex;
    gap:.5rem;
    justify-content: space-between;
}
.side > * {
    flex:1;
}
.sect {
    display: flex;
    flex-direction: column;
    gap:5px;
}
.container {
    color:var(--text);
}
.requestaction{
    display: flex;
    gap:5px;
    align-items: center;
}
.queryeduser{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.userinfoparent {
    display: flex;
    gap:5px;
    align-items: center;
}
.userinfo {
    font-size: 1.5rem;
}
.userfriendactions{
    display: flex;
    justify-content: flex-end;
    gap:5px;
}
.userbadges {
    display: flex;
    align-items: center;
    gap:5px;
}
#findfriend {
    width: max(40vw, 20rem);
}
@media screen and (max-width:770px) {
    .request{
        flex-direction: column;
        button {
            width: 100%;
        }
    }
    #tabs {
        flex-direction: column;
    }
    .side {
        flex-direction: column;
    }
}