	/* 1. GLOBAL STYLES */
        body {
            background-color: #F0EAD2; /* The classic old-web grey background */
            font-family: Verdana, Arial, sans-serif;
            font-size: 12px;
            color: #4A3B06;
            margin: 0;
            padding: 0;
        }

        /* 2. THE TOPBAR */
        .topbar {
            width: 500px; /* Half of a 2000s blog width */
            margin: 20px auto 10px auto;
            text-align: center;
            background-color: #FDFCF7;
            border: 1px solid #4A3B06;
            padding: 8px;
            font-weight: bold;
        }
        .topbar a {
            color: #4A3B06;
            text-decoration: none;
        }
        .topbar a:hover {
            text-decoration: underline;
        }

        /* 3. THE MAIN CONTAINER */
        .container {
            width: 800px;
            margin: 0 auto;
            background-color: #FAF8F0;
            border: 1px solid #4A3B06;
            padding: 20px;
            min-height: 600px;
        }

        /* 4. THE QUOTE BOXES */
        .quote-box {
            background-color: #F9F3D9; /* Light gold box */
            border: 1px solid #cccccc;
            margin-bottom: 15px;
            padding: 12px;
        }
        
        /* Zebra striping: makes every second quote a different color */
        .quote-box:nth-child(even) {
            background-color: #E6D38E; /* Darker gold tint */
        }

        .quote-id {
            color: #4A3B06;
            font-weight: bold;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            border-bottom: 1px solid #eee;
        }

        .quote-text {
            font-family: "Courier New", Courier, monospace;
            font-size: 13px;
            color: #4A3B06;
            white-space: pre-wrap; /* THIS KEEPS YOUR LINE BREAKS */
            display: block;
            line-height: 1.4;
        }

        h1 {
            text-align: center;
            font-size: 24px;
            color: #333;
        }

.counter-footer {
    text-align: center;      /* Centers the text and the injected script image */
    margin: 40px auto;       /* Adds a 40px gap between your quotes and the counter */
    width: 100%;             /* Ensures the centering is based on the full page width */
    padding-bottom: 20px;
}

.counter-footer p {
    font-size: 10px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* This targets the image the script creates to ensure it behaves */
.counter-footer img {
    display: inline-block;
    border: 1px solid #999; /* Optional: adds a tiny border to the counter image */
}