.my-powerball-widget {
    background: #000;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
}

.my-powerball-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-powerball-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.my-powerball-number {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 15px 0;
}

.my-powerball-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.my-powerball-table th {
    background: #c00;
    color: white;
    padding: 10px;
    text-align: left;
}

.my-powerball-table td {
    background: #111;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.my-powerball-blue {
    background: #1a2d45;
    color: white;
}

.my-powerball-inline {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.my-powerball-inline div {
    background: #111;
    padding: 5px 10px;
    border-radius: 4px;
}

.lottery-results-full-width {
    grid-column: 1 / -1; /* ยาวเต็มพื้นที่ */
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2px;
}


