.resizer {
    position: relative;
    width: 2.5px;
    margin: 0 3.75px 0 0.5rem;
    background-color: var(--border-color);
    cursor: col-resize;
}

.resizer:has(.resizer-handle[data-hidden="true"]) {
    width: 0px;
}

.resizer:hover .resizer-handle {
    background-color: var(--button-background-color);
    transition: all 0.5s;
}

.resizer:active .resizer-handle {
    background-color: var(--button-background-color);
}

.resizer-handle {
    position: absolute;
    width: 5px;
    height: 100%;
    left: -1.25px;
    transition: all 0.5s;
}

.sidebar {
    display: flex;
    width: 0px;
    min-width: 0px;
    overflow-y: auto;
}

.entity-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem;
}

.entity {
    cursor: pointer;
    width: 100%;
    padding: 0.25rem 0.5rem;
    background-color: var(--hover-color);
    border: 0.5px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    text-align: center;
}

.entity:active {
    background-color: var(--active-color);
}
