.contentContainer {
    display: flex;
    align-items: flex-start;
}

.bigLeftColumn {
    width: 185px;
    display: flex;
    flex-direction: column;
    position: sticky;
    position: -webkit-sticky;
    top: var(--bodyHeaderHeight);
    height: calc(100vh / var(--bodyZoomRatio) - var(--bodyHeaderHeight) - var(--addressBarHeight));
    overflow: auto;
    padding: 10px 0 10px 10px;
}

.bigLeftColumn::-webkit-scrollbar {
    display: none;
}

.bigLeftColumn>* {
    margin-bottom: 10px;
}

.bigLeftColumn>*:last-child {
    margin-bottom: 0px;
}

.pageBlock {
    background-color: white;
    display: flex;
    box-shadow: 0 0 3px hsl(0, 0%, 80%);
    border-radius: 10px;
    overflow: hidden;
    flex-direction: column;
}

.pb_row1 {
    padding: 10px;
    font-weight: bold;
    background-color: hsl(0, 0%, 90%);
}

.pb_row2 {
    padding: 10px;
    white-space: pre-line;
}

.pb_row3 {
    display: flex;
    justify-content: flex-end;
    padding: 0 10px 10px;
    font-weight: bold;
    font-size: 13px;
}

.pb_link {
    color: black;
    text-decoration: none;

}

.pb_link:hover {
    color: var(--green)
}

.tagBlocks {
    display: flex;
    /* background-color: red; */
    padding: 10px 0;
    overflow: auto;
}

.tagBlocks_noScrollBar {
    padding-bottom: 0;
}

.tagBlocks>* {
    margin-right: 10px;
}

.tagBlocks>*:last-child {
    margin-right: 0px;
}

.bigRightColumn {
    flex-shrink: 1;
    flex-grow: 1;
    display: grid;
    padding: 0 10px 10px 10px;
}

.bigRightColumn>* {
    margin-bottom: 10px;
}

.bigRightColumn>*:last-child {
    margin-bottom: 0px;
}

.tagBlock {
    background-color: white;
    border-radius: 100px;
    padding: 5px 10px 5px 5px;
    font-weight: bold;
    display: flex;
    align-items: center;
    border: 1px solid hsl(0, 0%, 80%);
}


.tagBlock:hover .tb_uncheckedIcon {
    background-color: black;
    border: 0px;
}

.tagBlockChosen .tb_uncheckedIcon {
    display: none;
}

.tagBlockChosen .tb_checkedIcon {
    display: block;
}

.tb_uncheckedIcon,
.tb_checkedIcon {
    height: 25px;
    width: 25px;
    font-size: 25px;
    margin-right: 5px;
    border-radius: 100px;
}

.tb_checkedIcon {
    display: none
}

.tb_uncheckedIcon {
    background-color: white;
    border: 1px solid hsl(0, 0%, 80%);
}



.projectBlocks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 10px;
}

.projectBlocks:empty,
.projectBlocksEmpty {
    position: relative;
}

.projectBlocks:empty::before,
.projectBlocksEmpty::before {
    content: "Nothing";
    color: gray;
    width: 100%;
    position: absolute;
    height: calc(100vh / var(--bodyZoomRatio) - var(--bodyHeaderHeight) - var(--addressBarHeight));
    left: 0px;
    top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.projectBlock {
    background-color: white;
    overflow: hidden;
    border-radius: 10px;
    display: grid;
    box-shadow: 0 0 3px hsl(0, 0%, 80%);
    color: black;
    text-decoration: none;
}

.projectBlock:hover {
    box-shadow: 0 0 3px black, 0 0 3px black;
}

.pb_img {
    width: 100%;
    height: var(--starImgWidth);
    object-fit: cover;
}

.pb_textGroup {
    padding: 10px;
    display: grid;
    grid-gap: 5px;
    line-height: 1;
}

.pb_text1 {
    font-weight: bold;
}

.pb_text3 {
    color: gray;
}