        body {
            background: #121212;
            color: #e0e0e0;
            font-family: 'Courier New', Courier, monospace;
        }
        .container {
            margin-top: 20px;
        }
        .chat-table {
            background: #1e1e1e;
            border: 1px solid #333;
            border-radius: 5px;
            padding: 15px;
            color: #e0e0e0;
        }
        .chat-table th, .chat-table td {
            padding: 10px;
            text-align: left;
            font-size: 14px; /* Reduced font size */
        }
        .chat-table th {
            background: #2c2c2c;
        }
        .chat-table tr:nth-child(even) {
            background: #2c2c2c;
        }
        .chat-table tr:nth-child(odd) {
            background: #1e1e1e;
        }
        .pagination {
            justify-content: center;
        }
        .footer {
            text-align: center;
            margin-top: 20px;
        }
        .footer a {
            color: #64ffda;
        }
        .button-group {
            margin-bottom: 20px;
            text-align: center;
        }
        .button-group .btn {
            margin: 0 10px;
        }
        /* Hide SteamID and IP columns on small screens */
        @media (max-width: 768px) {
            .steamid-column, .ip-column {
                display: none; /* Hide these columns */
            }
            .chat-table th, .chat-table td {
                padding: 5px;
                font-size: 12px; /* Further reduce font size */
            }
            h2 {
                font-size: 1.5rem;
            }
            .button-group .btn {
                display: block;
                margin: 10px auto;
                width: 100%;
            }
        }