body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.5;
            color: #000000;
            background-color: #FFFFFF;
            margin: 0 auto;
            max-width: 960px;
            padding: 20px;
-webkit-tap-highlight-color: transparent;
        }
        h1, h2, h3 {
            font-family: "Times New Roman", Times, serif;
        }
        h1 {
            text-align: center;
        }
        a {
            color: #0000FF;
            text-decoration: underline;
        }
        hr {
            border: 0;
            height: 1.5px;
            background: #333;
            margin: 20px 0;
        }
        .tool-container {
            border: 1.5px solid #000000;
            padding: 20px;
            background-color: #F0F0F0;
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
        }
        .textarea-wrapper {
            display: flex;
            align-items: stretch; /* Ensures items stretch to fill the container height */
            gap: 5px;
        }
        textarea {
            flex-grow: 1;
            height: 200px;
            padding: 8px;
            border: 1.5px solid #333;
            font-family: Arial, Helvetica, sans-serif;
            resize: vertical;
        }
        .scroll-controls {
            display: none;
        }
        .scroll-button {
            display: none;
        }
        .scrollbar-track {
            display: none;
        }
        .scrollbar-thumb {
            display: none;
        }
        .counter-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-top: 15px;
        }
        .counter-item {
            background-color: #DDDDDD;
            border: 1.5px solid #000000;
            padding: 10px;
            text-align: center;
        }
        .counter-item h3 {
            margin: 0 0 5px 0;
            font-size: 1.2em;
        }
        .counter-item p {
            margin: 0;
            font-size: 1.5em;
            font-weight: bold;
        }
        .button-group {
            text-align: center;
            margin-top: 15px;
        }
        button {
            padding: 10px 15px;
            border: 1.5px solid #000;
            cursor: pointer;
            margin-right: 10px;
            color: white;
            font-weight: bold;
        }
        #clear-btn {
            background-color: #C9302C;
        }
        #copy-btn {
            background-color: #449D44;
        }
.home-link {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    -webkit-tap-highlight-color: transparent;
    color: #0000FF;            /* blue like a hyperlink */
    cursor: pointer;           /* shows pointer hand on hover */
}
        .info-section {
            margin-top: 0;
        }
        .info-section h2, .info-section h3 {
            text-align: left;
        }
        .info-section p {
            text-align: left;
        }
    .info-section ul li{
        margin-top: 12px;
    }
    .info-section ol li {
        margin-top: 12px;
    }
        /* Media query for desktop screens */
        @media (min-width: 768px) {
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }