@media only screen and (min-width: 200px) {
    .pb-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .pb-background {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: var(--accent-1);
        width: 90%;
        height: fit-content;
        border-radius: 12px;
        padding: 0.5em 0;
    }
    .pb-background h1 {
        margin: 0.43em 0 0.73em 0;
    }
    .progress-bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        background-color: var(--progress-bar);
        width: 95%;
        height: 37px;
        border-radius: 16px;
        margin-bottom: 0.8em;
        z-index: 0;
        position: relative;
    }
    .streak-fire {
        position: absolute;
        right: 0;
        padding-right: 1em;
        width: 2em;
    }
    .border {
        width: 100%;
        height: 100%;
        border: 2px solid var(--accent-2);
        border-radius: 16px;
        box-shadow: var(--box-shadow);
        z-index: 2;
        position: absolute;
    }
    .percentage {
        display: flex;
        width: 20%;
        height: 34px;
        background-color: var(--percentage);
        border-radius: 14px 0px 0px 14px;
        /* padding-left: 5px; */
        z-index: 1;
    }
    .progress-info-wrapper {
        display: grid;
        width: 100%;
        grid-template-columns: 50% 50%;
        /* gap: 0.5em; */
        justify-content: center;
    }
    .progress-info h2 {
        justify-content: center;
    }
    .progress-info h2 {
        text-decoration: underline;
        margin: 0.2em 0;
    }
    .added {
        display: flex;
        width: 100%;
        justify-content: end;
        padding: 0 0.5em;
    }
    #edit-pb, #updateCount {
        font-size: 24px;
        cursor: pointer;
    }
}
@media only screen and (min-width: 326px) {
    .pb-background {
        width: 93%;
    }
}
@media only screen and (min-width: 720px) {
    .pb-background {
        min-height: 17em;
    }
    .streak-fire {
        width: 2.5em;
    }
    .progress-info-wrapper {
        display: flex;
        justify-content: space-evenly;
    }
    .added {
        margin-top: 0.3em;
    }
}
