aside {
    margin: 0.3rem 1rem;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search__container {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    position: sticky;
    top: 5px;
    background-color: #000;
    z-index: 100;
}

.who-to-follow {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0px;
    z-index: 99;
    background-color: #000;
}

.who-to-follow > span {
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem;
}

.who-to-follow__account {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.account__image {
    max-width: 40px;
}

.account__image img {
    width: 100%;
    border-radius: 2rem;
}

.who-to-follow__account {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
}

.who-to-follow__account:hover {
    background-color: rgba(154, 154, 154, 0.1);
}

.who-to-follow__account button {
    border: none;
    color: #000;
    background-color: #fff;
    font-weight: 600;
    padding: 0.5rem 1rem;
    height: fit-content;
    border-radius: 2rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.account_data {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.account_username p{
    font-weight: 600;
    font-size: 1.1rem;
}

.account_username p:hover{
    text-decoration: underline;
}

.account_username span{
    font-weight: 400;
    color: #7d7d7d;
}

.who-to-follow > button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    color: rgb(0, 145, 255);
    transition: background-color 0.2s;
}

.who-to-follow > button:hover {
    background-color: rgba(154, 154, 154, 0.1);
}

.search__container i {
    color: #7d7d7d;
    font-size: 0.8rem
}

#search {
    background-color: transparent;
    border: none;
    resize: none;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

#search::placeholder {
    color: #fff;
}

.search__container:focus-within{
    border: 2px solid rgb(0, 145, 255);
}

.trending {
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 200px;
    z-index: 98;
    background-color: #000;
}

.trending > button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 1rem;
    font-size: 1rem;
    color: rgb(0, 145, 255);
    transition: background-color 0.2s;
}

.trending > button:hover {
    background-color: rgba(154, 154, 154, 0.1);
}

.trending > span {
    font-weight: 600;
    font-size: 1.3rem;
    padding: 1rem;
}

.trending__item--text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

.trending__item--text:hover {
    background-color: rgba(154, 154, 154, 0.1);
}

.trending__item--text span{
    color: #7d7d7d;
    font-size: 0.9rem;
}

.trending__item--text p{
    font-size: 1rem;
    font-weight: 600;
}

.app_info {
    padding: 0rem 0.5rem;
    position: sticky;
    top: 600px;
}

.app_info * {
    font-weight: 400;
    font-size: 0.8rem;
    color: #7d7d7d;
    text-decoration: none;
}

.app_info a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    aside {
        display: none;
    }
}