/* === Minimalist Betting Calculator === */


.betting-calculator-wrapper {
    max-width: 900px;
    margin: 30px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.calculator-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.calculator-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

.matches-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.match-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
}

.match-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.match-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.team-name {
    color: #111;
}

.vs-text {
    font-size: 11px;
    color: #999;
}

.odds-container {
    display: flex;
    gap: 8px;
}

.odds-btn {
    flex: 1;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 6px;
    cursor: pointer;
    text-align: center;
    min-height: 72px;
}

.odds-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.outcome-label {
    font-size: 13px;
    font-weight: 600;
}

.odds-value {
    font-size: 16px;
    font-weight: 700;
}

.outcome-text {
    font-size: 10px;
    color: #777;
}

.calculator-section {
    margin-top: 30px;
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
}

.selected-bet {
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

.calculate-btn {
    margin-top: 16px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #111;
    color: #fff;
    border-radius: 8px;
    border: none;
}

.results {
    margin-top: 24px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.result-item.total {
    font-weight: 700;
    font-size: 16px;
    border-bottom: none;
}
