/* ==========================================================================
   Totals Football Widget Styles — Dark Mode
   ========================================================================== */

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

.totals-widget .section-title {
    font-size: 1rem;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 8px;
}

.totals-widget .market-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
}

.totals-widget .market-table th {
    background: #2c2c2c;
    font-size: .95rem;
    padding: 10px;
    text-align: center;
    color: #ddd;
}

.totals-widget .market-table td {
    background: #222;
    border: 1px solid #333;
    padding: 12px 8px;
    width: 33.3%;
    height: 110px;
    text-align: center;
    vertical-align: middle;
    color: #eee;
}

/* Logos encima de las odds */
.totals-widget .team-logo {
    height: 28px;
    margin-bottom: 6px;
    object-fit: contain;
    opacity: 0.9;
}

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

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

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

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

/* Bet controls */
.totals-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;
}

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

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

/* Bet365 button */
.totals-widget .bet365-btn {
    background: #00894f;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    border: 1px solid #0fa367;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
}

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

/* =======================
   📱 Responsive
========================== */
@media (max-width: 600px) {
    .totals-widget {
        padding: 10px;
    }

    .totals-widget .market-table td {
        height: 80px;
    }

    .totals-widget .section-title {
        font-size: .9rem;
    }

    .totals-widget .bet365-btn {
        width: 90%;
    }
}
