/* ===== Result Display Update ===== */
.result-numbers-section {
    padding: 1.25rem 1rem;
    /* Increased padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.result-balls-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.result-balls-row.main {
    margin-bottom: 0.2rem;
    /* Minimal spacing */
}

.result-balls-row.bonus {
    position: relative;
    padding-top: 0;
    margin-top: 0;
}

/* Separator line removed */
.result-balls-row.bonus::before {
    display: none;
}

.bonus-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.1;
    margin-right: 0.5rem;
}

.plus-sign {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.bonus-label {
    font-weight: 500;
    color: var(--primary-color);
    /* Highlight text */
    margin-top: 2px;
}