.results-page {
    min-height: calc(100vh - 116px);
    border-radius: 8px;
    background: #f6f8fb;
    padding: 18px;
    color: #172033;
}

.results-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 16px;
    align-items: stretch;
    margin-bottom: 16px;
}

.results-header h1 {
    margin: 4px 0 8px;
    color: #172033;
    font-size: 28px;
    font-weight: 700;
}

.results-header p {
    margin: 0;
    max-width: 760px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}

.results-controls,
.results-summary-card,
.result-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, .05);
}

.results-controls {
    display: grid;
    gap: 12px;
    padding: 16px;
}

.results-page label {
    display: block;
    margin: 0;
}

.results-page label span {
    display: block;
    margin-bottom: 7px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
}

.results-page .form-control {
    height: 42px;
    border-color: #d6dee9;
    border-radius: 8px;
    box-shadow: none;
}

.results-status {
    margin-bottom: 16px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #64748b;
    font-size: 13px;
}

.results-status.success {
    border-color: #bbf7d0;
    background: #ecfdf5;
    color: #15803d;
}

.results-status.warn {
    border-color: #fed7aa;
    background: #fff7ed;
    color: #c2410c;
}

.results-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.results-summary-card {
    padding: 14px;
}

.results-summary-card span,
.results-summary-card small {
    display: block;
    color: #64748b;
    font-size: 13px;
}

.results-summary-card strong {
    display: block;
    margin-top: 6px;
    color: #0f172a;
    font-size: 24px;
}

.results-list {
    display: grid;
    gap: 12px;
}

.result-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px 220px;
    gap: 14px;
    align-items: center;
    padding: 14px;
}

.result-main strong {
    display: block;
    color: #172033;
    font-size: 16px;
    margin-bottom: 5px;
}

.result-main span,
.result-meta span,
.result-odds span {
    display: block;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.result-score {
    color: #0f766e;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.result-score-pending {
    color: #475569;
    font-size: 22px;
}

.result-empty {
    padding: 18px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1240px) {
    .results-header,
    .results-summary {
        grid-template-columns: 1fr 1fr;
    }

    .result-card {
        grid-template-columns: minmax(0, 1fr) 120px;
    }

    .result-odds {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .results-page {
        padding: 12px;
    }

    .results-header,
    .results-summary,
    .result-card {
        grid-template-columns: 1fr;
    }

    .results-header h1 {
        font-size: 23px;
    }

    .result-score {
        text-align: left;
    }
}
