.tab-bar {
    height: 48px;
    /* background-color: var(--dark-background); */
	background-color: rgba(55, 55, 55, 0.8);
    position: fixed;
    bottom: 0;
    width: 100%;
	
    font-family: var(--font-title);
    font-variant: all-small-caps;
    color: var(--gray);
    font-size: 12px;
    line-height: 12px;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tab {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;

    height: 100%;
    justify-content: center;
    border-radius: 10px;
    flex: 1;
}

.tab-icon {
    height: 18px;
    width: auto;
}

.selected {
    background-color: #444;
}
