

.lotto-c{
    padding: 1rem 0;
}
.lotto-card {
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.3rem;
    padding: 1rem 2rem;
    text-align: center;
}

.lotto-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lotto-title {
    color: #E54261;
    font-size: 24px;
    font-weight: bold;
}

.jackpot-amount {
    font-size: 20px;
    font-weight: bold;
}

.lotto-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 30rem;
    margin: 0 auto;
}

.winning-numbers-section, .bonus-section {
    text-align: center;
}

.numbers {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.number {
    background-color: #00675a;
    color: white;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 50%;
    display: inline-block;
}

.bonus {
    border: 2px solid #E54261;
}

.lotto-footer {
    margin-top: 20px;
}

.prize-breakdown {
    color: black;
    text-decoration: none;
}

.number, .bonus {
    font-size: 16px;
    font-weight: bold;
}
.special{
    background-color: #E54261;
}
.lotto-issue{
    font-size: 1.6rem;
    color: #C60C30;
    text-decoration: underline;
}
.lotto-bottom{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.load-more{
    border: 1px solid #c9c9c9;
    padding: 10px 20px;
    border-radius: 0.3rem;
    background-color: #c4dc33;
}