
/* The class 'resultswrap' is used for the HTML element itself. */
.resultswrap {
	font-family: Arial, sans-serif;	/* Match Arial on the Text object */
	border: 1px solid black;		/* Add a black border */
	overflow-y: auto;				/* Allow vertical scrolling */
}

:root {
            --primary-color: #2c3e50;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --bg-color: #f4f7f9;
            --text-color: #333333;
            --white: #ffffff;
            --font-main: 18px;
            --font-title: 1.8rem;
            --font-sub: 1.3rem;
            --line-height: 1.6;
        }

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: var(--font-main);
            line-height: var(--line-height);
            color: var(--text-color);
            background-color: var(--bg-color);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--white);
            padding: 15px 15px 5px 15px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        header {
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        header h2 {
            color: var(--primary-color);
            font-size: var(--font-title);
            margin: 0 0 5px 0;
            letter-spacing: -0.3px;
            line-height: 1.1;
            display: flex;
            align-items: center;
            border-left: none;
            padding-left: 0;
        }

        header h2::before {
            content: "";
            display: inline-block;
            width: 6px;
            height: 1.6rem;
            background-color: var(--accent-color);
            margin-right: 12px;
        }

        header p {
            margin: 2px 0;
            font-size: 0.7rem;
        }

        .last-updated {
            color: #95a5a6;
            font-size: 0.6rem !important;
        }

        section p {
            margin-top: 0;
        }

        h3 {
            color: var(--secondary-color);
            font-size: var(--font-sub);
            border-left: 4px solid var(--accent-color);
            padding-left: 12px;
            margin: 25px 0 10px 0;
            line-height: 1.2;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            padding-left: 20px;
            margin-top: 5px;
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 6px;
        }

        strong {
            color: #111;
            font-weight: 600;
        }

        a {
            color: var(--accent-color);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        footer {
            text-align: center;
            color: #bdc3c7;
            font-size: 0.85rem;
        }

        @media (max-width: 600px) {
            .container {
                padding: 10px 20px 20px 20px;
            }
            header h2 {
                font-size: 1.0rem;
            }
            h3 {
                font-size: 0.9rem;
            }
        }