#page-header {
    width: 100%;
    height: 40px;

    padding: 0 10px;

    align-items: center;
    justify-content: left;
    gap: 10px;
}

#page-header > div {
    width: auto;
    padding: 0 10px;
    height: 100%;

    align-items: center;
    justify-content: center;

    font-size: 24px;
    font-weight: 400;
    color: #FFF;

    border-radius: 4px;

    transition: all 0.1s ease-in;

    cursor: pointer;
}

#page-header > div:hover {background-color: rgb(33, 33, 33)}
#page-header > div:active {background-color: rgb(44, 44, 44)}
#page-header > div[active = "true"] {
    border-bottom: 5px solid rgb(88, 177, 91);
    background-color: rgb(33, 33, 33)
}