*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html, body{
    height: 100%;
}

body{
    display: flex;
    justify-content: flex-start;
    margin: 0;
    overflow:hidden;

}

.sidebar-container{
    width: 15vw;
    /*height: 100vh;*/
    background-color: #5459AC;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-container ul li{
    list-style-type: none;
    color: white;
}

nav{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.bottom{
    margin-top: auto;
    margin-bottom: 30px;
}

nav li{
    display: flex;
    align-items: center;
    gap: 15px;      
    padding: 8px;
    border-radius: 8px;
} nav li:hover{
    background-color: #2b2d58fe;
}

#home{
    color:white
}

.logo-container{
    height: 100px;
    width: 100px;
}

#mainLogo{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.header-container{
    width: auto;
    padding: 16px 20px;
    flex-shrink: 0;

    min-height: 120px; /* safe minimum */
    background-color: white;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: large;
    flex-shrink:1;
}


.main-container{
    display: flex;
    flex-direction: column;
    flex:1;
    min-height: 0;
}

.containers{
    flex: 1;
    display: flex;
    justify-content: space-between;

    background-color: #b3b5e8;

    overflow-y: auto; /* SCROLL LIVES HERE */
    min-height: 0;
}

#dashTitle{
    color:white
}

.top-section{
    display:flex;
    justify-content: space-between;
    margin-top: 5px;
}

.search-div{
    display:flex;
    align-items: center;
    margin-top: 5px;
    margin-left: 10px;
}

.search-bar{
    padding: 8px 10px;
    border: 1px solid #bebebe;
    background-color: #eae9e9;
    border-radius: 100px;
    width: 100%;
    max-width: 450px;
    min-width: 250px;
}

#search-icon{
    padding-left: 5px;
}

#profile-icon-small{
    width:50px;
    height: 50px;
    border-radius: 100%;
}

.basic-profile-div{
    display: flex;
    align-items: center;
    margin-right: 20px;
    gap: 30px;
}

.bottom-section{
    display: flex;
    justify-content: space-between;
}

#bottom-right{
    margin-top: auto;
    margin-bottom: 35px;
    margin-right: 20px;
    display: flex;
    gap:30px;
}

.bottom-button{
    width: 150px;
    height: 45px;
    border-radius: 10px;
    margin-left: 20px;
    background-color: #5459AC;
    color: white;
    font-weight: bold;
}

.bottom-button:hover{
    cursor: pointer;
    background-color:  #2b2d58fe;
}

#bottom-left{
    margin-top: 25px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}

#profile-pic{
    width:100px;
    height: 100px;
    border-radius: 100%;
}

.header-text-main{
    margin-left: 10px;
}

#smaller-text{
    font-size: small;
}

#left-main{
   
    display: grid;
    padding: 50px;
    margin: 0;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 30px;
}

.grid-container div{
    border: 1px solid white;
    border-radius: 10px;
    background-color: white;
}

.containers{
    display: flex;
    justify-content: space-between;
}

#right-main{
   
    display: grid;
    padding: 50px;
    margin: 0;
    grid-template-columns: repeat(1, minmax(250px, 1fr));
    gap: 30px;
}

.users{
    display: flex;
    align-items: center;
    gap: 5px;
}

#trending li{
    list-style: none;
    margin-top: 5px;
}

#online-users{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#online-users img{
    width: 60px;
    height: 60px;
    border-radius: 100px;
}