.double-chance-widget {
    font-family: 'Inter', sans-serif;
    max-width: 940px;
    margin: 40px auto;
    padding: 24px;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 12px;
    color: #eee;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.double-chance-widget .section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.double-chance-widget .market-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.double-chance-widget .market-table th {
    background: #2c2c2c;
    color: #ccc;
    font-size: 0.95rem;
    padding: 10px;
    text-align: center;
}

.double-chance-widget .market-table td {
    background: #222;
    border: 1px solid #333;
    padding: 14px 10px;
    text-align: center;
    vertical-align: middle;
    color: #eee;
    height: 120px;
}

.double-chance-widget .odds-btn {
    background: #2a2a2a;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ddd;
    cursor: pointer;
    height: 100%;
    transition: all .2s;
    gap: 4px;
}

.double-chance-widget .odds-btn.highlight {
    border: 2px solid #00e676;
    background: #154a2d;
}

.double-chance-widget .odds-btn.active {
    background: #3a5a3a;
    border-color: #00ff88;
    color: #fff;
}

.double-chance-widget .odds-btn.disabled {
    background: #2c2c2c;
    border-color: #444;
    color: #666;
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

/* === Equipo + X combinados === */
.double-chance-widget .team-combo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 2px;
}

.double-chance-widget .team-logo {
    height: 24px;
    opacity: 0.9;
}

.double-chance-widget .x-label {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    line-height: 1;
}

/* === Valor de la cuota === */
.double-chance-widget .odd-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #eee;
    margin-top: 0px;
}

/* === BET CONTROLS === */
.double-chance-widget .bet-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: #2d2d2d;
    padding: 14px;
    border: 1px solid #444;
    border-radius: 10px;
    margin-top: 14px;
}

.double-chance-widget .stake-input {
    padding: 8px;
    width: 100px;
    text-align: right;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: .95rem;
    background: #1a1a1a;
    color: #eee;
}

.double-chance-widget .ganancia {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
}

.double-chance-widget .bet365-btn {
    background: #00894f;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    border: 1px solid #0fa367;
    text-decoration: none;
}

.double-chance-widget .bet365-btn img {
    height: 18px;
    vertical-align: middle;
    border-radius: 4px;
    margin-left: 6px;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .double-chance-widget {
        padding: 12px;
    }

    .double-chance-widget .market-table td {
        height: 90px;
    }

    .double-chance-widget .section-title {
        font-size: 1rem;
    }

    .double-chance-widget .bet365-btn {
        width: 100%;
        text-align: center;
    }
}
