/* Shared odds styles for event pages */
.odds-markets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.odds-market {
    background: var(--panel-2, #151b24);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.odds-market:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.odds-market.suspended {
    opacity: 0.7;
}

.odds-market-header {
    background: var(--panel, #0f131b);
    padding: 12px 16px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid var(--line, rgba(255, 255, 255, 0.08));
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.odds-market-header .suspended-label {
    color: #f39c12;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(243, 156, 18, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
}

.odds-selections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1px;
    background: var(--line, rgba(255, 255, 255, 0.08));
}

.odds-selection {
    background: var(--panel-2, #151b24);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
    cursor: pointer;
}

.odds-selection:hover {
    background: rgba(255, 255, 255, 0.05);
}

.odds-selection.suspended {
    opacity: 0.6;
    cursor: not-allowed;
}

.selection-name {
    font-size: 13px;
    color: var(--muted, #9fb1c9);
    flex: 1;
    line-height: 1.3;
}

.selection-odds {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    min-width: 55px;
    text-align: right;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    background: rgba(84, 126, 255, 0.18);
    border: 1px solid rgba(84, 126, 255, 0.35);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s ease;
}

.odds-selection:hover .selection-odds {
    background: rgba(84, 126, 255, 0.32);
}

.odds-trend {
    font-size: 11px;
}

.odds-trend.up {
    color: #2ecc71;
}

.odds-trend.down {
    color: #e74c3c;
}

.odds-selection.suspended .selection-odds {
    color: #888;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.05);
}

/* Empty/Locked odds state */
.odds-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    background: var(--panel-2, #151b24);
    border-radius: 10px;
}

.odds-empty-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.odds-empty-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--muted, #9fb1c9);
    opacity: 0.6;
}

.odds-empty-text {
    color: var(--muted, #9fb1c9);
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .odds-markets {
        padding: 10px;
        gap: 10px;
    }

    .odds-market-header {
        padding: 10px 14px;
        font-size: 13px;
    }

    .odds-selections {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .odds-selection {
        padding: 12px 14px;
    }

    .selection-name {
        font-size: 12px;
    }

    .selection-odds {
        font-size: 14px;
        padding: 5px 8px;
        min-width: 50px;
    }
}

@media (max-width: 480px) {
    .odds-markets {
        padding: 8px;
        gap: 8px;
    }

    .odds-market {
        border-radius: 8px;
    }

    .odds-market-header {
        padding: 10px 12px;
        font-size: 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .odds-market-header .suspended-label {
        font-size: 10px;
        padding: 2px 6px;
    }

    .odds-selections {
        grid-template-columns: repeat(2, 1fr);
    }

    .odds-selection {
        padding: 10px 12px;
        gap: 6px;
    }

    .selection-name {
        font-size: 11px;
    }

    .selection-odds {
        font-size: 13px;
        padding: 4px 7px;
        min-width: 45px;
        border-radius: 5px;
    }

    .odds-empty {
        padding: 36px 16px;
    }

    .odds-empty-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .odds-empty-icon svg {
        width: 24px;
        height: 24px;
    }

    .odds-empty-text {
        font-size: 13px;
    }
}
