.odds-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.odds-table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.odds-table th,
.odds-table td {
    border: 1px solid #dddddd;
    padding: 8px;
}

.odds-table tbody tr:nth-child(even) {
    background-color: #f3f3f3;
}

.odds-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.bet-now-button {
    background-color: #7fc64a; /* New green color */
    color: white!important; /* White text */
    padding: 10px 16px;
    text-decoration: none!important;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    font-weight: 900; /* Bold text */
    font-family: "Font Awesome 5 Free", Arial, sans-serif; /* Font Awesome */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bet-now-button:hover {
    background-color: #6ab034; /* Slightly darker green on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: white;
}

/* Odds Box Styles */
.odds-box {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: #f4f4f4;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}