[data-theme="light"] {
    --iz-bg-hashtag: #F4F4F5;
    --iz-color-text-hastag: #71717A
}

[data-theme="dark"] {
    --iz-bg-hashtag: #FFFFFF08;
    --iz-color-text-hastag: #FFFFFF;
}


.hashtag-title-section {
    display: flex;
    gap: 4px
}

.hashtag-left-side-icon {
    background-color: var(--iz-recently-download-header-border-left);
    width: 4px;
    height: 22px;
    border-radius: 7px
}

.hashtag-title {
    font-size: 32px;
    font-weight: 700;
}

.hashtag-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    /* max-height: 330px; */
}

.hashtag {
    margin: 6px;
    background-color: var(--iz-bg-hashtag);
    color: var(--iz-color-text-hastag);
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 16px;
    gap: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (max-width: 576px) {


    .hashtag-title-section {
        gap: 4px
    }

    .hashtag-left-side-icon {
        width: 4px;
        height: 18px;
        border-radius: 7px
    }

    .hashtag-title {
        font-size: 20px;
    }

    .hashtag-list {
        gap: 12px;

    }

    .hashtag {
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        padding: 4px;
        gap: 10px;
    }
}