.recentTourneyResultsPanel  {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recentTourneyFrame {
    flex-grow: 1;
    flex-shrink: 1;
    margin: auto;
    padding: 0;
    border: none;
    max-width: 100%;
}

.tourneyCard {
    border: 2px solid rgb(0, 0, 255);
    border-radius: 20px;
    box-shadow: 0 0 6px;
    background-color: rgba(160, 140, 200, 0.8);
    width: 99%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}


.tourneyCardHeader {
    width: 100%;
    text-align: left;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tourneyCardLeft {
    text-align: left;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
}

.tourneyCardRight {
    max-width: 55%;
    text-align: right;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}