.top-bar{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;

    height: 50px;

    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.top-bar .logo {
    display: flex;
    align-items: center;
}

.top-bar .logo .name{
    font-size: 30px;
    margin: 10px;
}

.top-bar .logo .icon {
    width: 50px;
}


.top-bar .actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.top-bar .actions button {
    font-size: 20px;
}

.top-bar .search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
}

.top-bar .search-bar input{
    font-size: 20px;
    width: 100%;
}

.top-bar .search-bar button{
    font-size: 20px;
    margin-left: 5px;
}

.top-bar .search-bar button img{
    width: 15px;
    margin-left: 5px;
    margin-right: 5px;
    transition: all 0.25s;
    filter: brightness(0) invert(1);
}

.top-bar .search-bar button:hover img{
    filter: brightness(0);
}

.account-container {
    display: flex;
    align-items: center;
}

.top-bar .account-container {
    margin: 10px;
}

.top-bar .account-container .profile-pic{
    width: 30px;
    margin: 10px;
}

@media (max-width:1000px) {
    .top-bar .logo .name{
        font-size: 15px;
        margin: 5px;
    }

    .top-bar .logo .icon{
        display: none;
    }

    .top-bar .search-bar button{
       display: none;
    }

    .top-bar .actions button{
        font-size: 15px;
    }
}
