/* File: /allresults/results-style.css */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9f9f9;
    color: #333;
    padding: 1rem;
    font-size: 1rem;
}

h2 {
    font-size: 1.5rem;
    color: #005bb5;
    margin-bottom: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
}

table tr:nth-child(even) {
    background-color: #f3f6fa;
}

table th, table td {
    padding: 0.6rem 0.8rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

table th {
    background-color: #0073e6;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 0.9rem;
}

table td {
    color: #333;
    font-size: 0.85rem;
}

a {
    color: #0073e6;
    font-weight: 500;
}

/* Mobile-specific styles */
@media (max-width: 767px) {
    body {
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.0rem;
        margin-bottom: 0.8rem;
    }

    table {
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }

    table th, table td {
        padding: 0.4rem 0.6rem;
    }

    table th {
        font-size: 0.75rem;
    }

    table td {
        font-size: 0.7rem;
    }

    /* Make tables scrollable horizontally on mobile */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}