.forenevent-progress {
    width: 100%;
    margin: 15px 0;
    text-align: center;
}

.forenevent-progress-title {
    margin-bottom: 7px;
    font-family: var(--font-title);
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--muted-tone);
}

.forenevent-progress-bar {
    width: 100%;
    height: 12px;
    overflow: hidden;
    background: #e0ded8;
    border-radius: 6px;
}

.forenevent-progress-fill {
    height: 100%;
    background: var(--muted-tone);
    border-radius: 6px;
}

.forenevent-progress-count {
    margin-top: 7px;
    font-family: var(--font-body);
    font-size: 12px;
    color: #7a7060;
}

.schicksals-bingo {
    --bingo-open: var(--trow);
    --bingo-text: var(--text);
    --bingo-done-text: var(--trow);

    display: flex !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 800px !important;
    margin: 0 auto;
    box-sizing: border-box;
    border: 0.5px solid var(--muted-tone);
}

.schicksals-bingo .bingo-cell {
    flex: 0 0 20% !important;
    width: 20% !important;
    max-width: 20% !important;
    min-width: 20% !important;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border: 1px solid var(--muted-tone);
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: var(--bingo-open);
    color: var(--bingo-text);
    position: relative;
}

.schicksals-bingo .cell-inner {
    position: absolute;
    inset: 6px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2px;
    line-height: 1.3;
    font-size: 11px;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.schicksals-bingo .bingo-done {
    background: var(--muted-tone);
    color: var(--base-color);
}