.tippado-bets-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0 auto;
}

.tippado-bet-card {
    background: #252525;
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #ffffff;
}

.tippado-bet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tippado-bet-match {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.tippado-bet-details {
    font-size: 16px;
    margin: 5px 0;
}

.tippado-bet-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 5px;
}

.tippado-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.tippado-badge-stake {
    background-color: #666;
}

.tippado-badge-status {
    background-color: #dc3545;
    /* Red for LIVE/Lost default */
}

.tippado-badge-status.won {
    background-color: #28a745;
}

.tippado-badge-status.lost {
    background-color: #dc3545;
}

.tippado-badge-status.pending {
    background-color: #ffc107;
    color: #333;
}

.tippado-badge-status.push {
    background-color: #8f8f8f;
}

.tippado-badge-bookmaker {
    background-color: #007055;
    /* Bet365 green-ish */
}

.tippado-profit {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tippado-profit.positive {
    color: #4db6ac;
    /* Teal/Green */
}

.tippado-profit.negative {
    color: #e53935;
    /* Red */
}

.tippado-score {
    font-size: 16px;
    margin-left: 5px;
}

.tippado-bet-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 5px;
}

.tippado-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.tippado-pagination a,
.tippado-pagination span {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    border-radius: 4px;
}

.tippado-pagination a:hover {
    background-color: #f0f0f0;
    color: #000;
}

.tippado-pagination .current {
    background-color: #FF8800;
    border-color: #FF8800;
}