/* Betting Options Table Style */
.betting-options-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fff;
    border-spacing: 0;
}

.betting-options-table tr {
    border-bottom: 1px solid #e0e0e0;
    height: 45px;
    box-sizing: border-box;
}

.betting-options-table tr:last-child {
    border-bottom: none;
}

.betting-options-table td {
    padding: 8px 6px;
    vertical-align: middle;
    line-height: 1.2;
    height: 45px;
    box-sizing: border-box;
}

.betting-options-table .score-cell {
    width: 15%;
    text-align: center;
    font-weight: bold;
    padding-left: 5px;
    white-space: nowrap;
}

.betting-options-table .odds-cell {
    width: 20%;
    text-align: center;
    color: #4CAF50;
    font-weight: bold;
    padding-right: 0;
    white-space: nowrap;
    font-size: 15px;
}

.betting-options-table .amount-cell {
    width: 40%;
    text-align: left;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 10px;
}

.betting-options-table .action-cell {
    width: 25%;
    text-align: center;
    padding-right: 5px;
    white-space: nowrap;
}

.betting-options-table .action-btn {
    background-color: #4285f4;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    font-weight: normal;
    height: 32px;
    line-height: 1;
    max-width: 80px;
    margin: 0 auto;
}

.betting-options-table .action-btn:hover {
    background-color: #3367d6;
}

/* Score styles */
.score-cell {
    font-size: 16px;
    white-space: nowrap;
}

/* Percentage styles */
.odds-percentage {
    display: block;
    font-size: 15px;
    color: #4CAF50;
    white-space: nowrap;
}

/* Amount styles */
.amount-value {
    font-weight: normal;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Selected row style */
.betting-options-table tr.selected {
    background-color: #f0f7ff;
}

/* Fix vertical alignment */
.betting-options-table td {
    vertical-align: middle !important;
}

/* Fix row height */
.betting-options-table tr {
    min-height: 45px;
}

/* Fix table width */
.betting-options-table {
    table-layout: fixed;
}

/* Responsive styles */
@media (max-width: 576px) {
    .betting-options-table .odds-cell {
        font-size: 13px;
        padding-right: 2px;
        width: 20%;
    }

    .betting-options-table .score-cell {
        font-size: 13px;
        padding-left: 2px;
        width: 15%;
    }

    .betting-options-table .action-btn {
        padding: 4px 6px;
        font-size: 12px;
        height: 28px;
    }

    .betting-options-table .amount-cell {
        font-size: 12px;
        padding-left: 2px;
        padding-right: 2px;
        max-width: 100px;
        overflow: hidden;
    }

    .betting-options-table {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
        font-size: 13px;
        table-layout: fixed;
    }

    .betting-options-table td {
        padding: 6px 4px;
        height: 45px;
        box-sizing: border-box;
    }
}
