.football-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    gap:10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #f0f0f0;
}
.teams-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
}
.team-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
 .football-card .team-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-bottom: 0;
}
.bet-info {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: 1;
    font-size: 14px;
    color: #444;
}

.bet-tip { font-weight: 400; color: #666; }

.bet-odds { font-weight: 700; color: #222; margin-top: 2px; }

.buttons-group {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.btn-read {
    background: #fff;
    color: #444;
    padding: 7px 10px;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background 0.2s;
    line-height: 14px;
}
.btn-bet {
    background: #006064; 
    color: #fff !important;
    padding: 7px 25px;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s;
}
.btn-read:hover { background: #f9f9f9; }
.btn-bet:hover { opacity: 0.9; }

@media (max-width: 600px) {
    .football-card { 
        flex-direction: column; 
        text-align: left; 
        gap: 15px; 
        align-items: flex-start;
        justify-content: space-between;
    }

    .bet-info { 
        gap: 10px; 
        align-items: flex-start;
        justify-content: space-between;    flex-direction: column; 
    }

    .team-row { 
        justify-content: left;
    }
}