body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f11;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    background-color: #0f0f11;
}

.navigation-container {
    width: 20%;
    max-width: 100px;
    min-width: 70px;
    border: 1px solid  #1c1c1c;
    
}

.navigation {
    color: white;
    margin-top: 30px;
    position: fixed;
    width: 20%;
    max-width: 100px;
    min-width: 70px;
}

.logo {
    display: flex;
    justify-content: center;
}

.logo i{
    font-size: 30px;
}

.home-link {
    
    display: flex;
    justify-content: center;
    border-right:4px solid #00ADFF;
    align-items: center;
    height: 40px;
    margin-top:20px;
}

.home-link i {
    color: #00ADFF ;
}

.profile-container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.profile {
    width: 30px;
    height: 30px;
    background-image: url(/images/profile.png);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 1px solid #979797;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tweets-search-container i {
    color: white;
    font-size: 30px;
    padding-left: 10px;
    cursor: pointer;
}

.tweets-search-container{
    margin: 20px;
    margin-top: 30px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #979797;    
}   

.tweets-search-container input {
    flex: 1;
    background-color: transparent;
    border: none;
    font-size: 30px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
}

.tweets-search-container input:focus{
    border: none;
    outline :none;
    box-shadow: none;
}

.tweets-list {
    margin:20px;  
    margin-top: 0;
}

.tweets-sidebar-container {
    flex: 1;
    display: flex;
    
}

.tweet-sidebar{
    width: 300px;
    height: 500px;
    margin: 20px;
    margin-top: 30px;
    background-color: white;
    border: 1px solid #979797;
    border-radius: 40px;
    overflow: hidden;
    position: fixed;
}

.tweets-trending{
    height: 200px;
    background-color: #f2f2f2;
    margin: 10px;
    border-radius: 40px;
    padding-top: 20px;
    
}

.tweets-trending h5 {
    font-size: 12px;
    color: #848586;
    margin-top: 0;
    padding-left: 20px;
    margin-bottom: 10px;
}

.tweets-trending ul {
    list-style: none;
    padding:0;
    margin: 0;
}

.tweets-trending ul li {
    color: #a5a5a6;
    padding-top:8px;
    padding-bottom: 8px;
    border-top: 0.5px solid #d8d8d8;
    padding-left: 20px;
    cursor: pointer;
    font-weight: 600;
}

.next-page-container {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    color:#47525D;
    border: 1px solid #1c1c1c;
    border-radius: 20px;
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.15s ease;
    visibility:hidden;
}

.next-page-container :hover{
    background-color: #1c1c1c;
}