#toolbar {
    display:flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 35px;
}


.toolbar-logo {
    aspect-ratio: 6 / 1;
    height: auto;
    width: 30%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1000;
    background-image: url('./icons/output_image.png');
}

#searchBox {
    display: flex;
    align-items: center;
    gap: 5px;
    position: sticky;
    top: 0;
    padding: 0.5rem 1rem;
    /* background-color: #fff; */
    z-index: 1000;
    height: auto;
    width: auto;
    flex-direction: row;
}

#searchInput {
    flex: 1;
    height: 30px;
    padding: 0 10px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 150px;
    max-width: 300px;
}

#searchIcon {
    height: 24px;
    width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./icons/search.png');
    cursor: pointer;
}


#tagBox {
    display: flex;
    align-items: center;
    gap: 5px;
    position: sticky;
    top: 0;
    padding: 0.5rem 1rem;
    z-index: 1000;
    height: auto;
    width: auto;
    flex-direction: row;
}

#tagInput {
    flex: 1;
    height: 30px;
    padding: 0 10px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 90px;
    max-width: 200px;
    width: 8%;
}

#tagIcon {
    height: 24px;
    width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./icons/tag.png');
    cursor: pointer;
}


#rankBox {
    display: flex;
    align-items: center;
    gap: 5px;
    position: sticky;
    top: 0;
    padding: 0.5rem 1rem;
    z-index: 1000;
    height: auto;
    width: auto;
    flex-direction: row;
}

#rankInput {
    flex: 2;
    height: 30px;
    padding: 0 10px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 50px;
}

#rankIcon {
    flex: 1;
    height: 24px;
    width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('./icons/top.png');
    cursor: pointer;
}
