﻿.bet-card {
    background-color: #153453;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 15px;
    margin-bottom: 15px;
    color: #fff;
}

.status-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.yellow {
    color: #fbbc05;
}

.green {
    color: #34a853;
}

.red {
    color: #ea4335;
}

.status {
    font-weight: bold;
}

    .status.sold {
        color: #fbbc05;
    }

    .status.paid {
        color: #34a853;
    }

    .status.unpaid {
        color: #ea4335;
    }

.bet-amount {
    font-size: 1.2rem;
    font-weight: bold;
}

.buttons {
    text-align: end;
}

@media (max-width: 768px) {
    .buttons {
        text-align: left;
        margin-top: 10px;
    }
}

.bet-detail {
    background-color: #333;
    border-radius: 8px;
    padding: 1rem;
    color:#fff;
}

.bet-match {
    background-color: #444;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
}

.bet-summary {
    background-color: #444;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
}

.highlight {
    font-size: 1.5rem;
    font-weight: bold;
}

.status-dot {
    font-weight: bold;
}

.badge-custom {
    background-color: #17a2b8;
    color: #222;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    border-radius: .25rem;
}