#tabbar {
    position: fixed;
    z-index: 3;
    bottom: calc(env(safe-area-inset-bottom));
    width: calc(100% - 54px);
    left: 27px;
    border-top: 1px solid var(--mr_silver);
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.0);
    border-radius: 55px;
    overflow: hidden;
    height: 55px;
}
.tab {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 49px;
    /* width: 20px; */
    color: var(--mr_wolf);
    border-radius: 49px;
    margin: 3px;
    transition: all 0.5s ease;
}
.tab:last-child {
    border-right: none; /* Kein Border für den letzten Tab */
}
.tab i {
  font-size: 22px;
  margin-bottom: 5px;
}
.tab.active {
  color: var(--mr_blue);
  background-color: rgba(228, 228, 228, 0.76);
}
.tab.disabled {
  color: lightgray;
}
#overviewContent {
  display: flex;
}
#miscContent {
  display: none;
}
#todayContent {
  display: none;
}
#weekContent {
  display: none;
}
#monthContent {
  display: none;
}