/* Tables */
.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.results-table th,
.results-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    font-size: 13px;
}

.results-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.results-table tr:hover {
    background: #f8fafc;
}

.results-table tr:last-child td {
    border-bottom: none;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-color: #3182ce;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.verification-summary {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    border-color: #38a169;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(56, 161, 105, 0.1);
}

.verification-summary strong {
    color: #22543d;
    font-size: 1.1rem;
}

.verification-summary i {
    color: #38a169;
    font-size: 1.2rem;
}