     body {
            background-color: #1e1e1e;
            color: #e5e5e5;
            font-family: 'Courier New', Courier, monospace;
            margin: 0;
            padding: 20px;
        }

        h1 {
            color: #f47c20;
            text-align: center;
            text-shadow: 2px 2px #000;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #2b2b2b;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        }

        th,
        td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #444;
        }

        th {
            background-color: #3e3e3e;
            color: #f47c20;
        }

        tr:hover {
            background-color: #383838;
        }

        img.avatar {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            vertical-align: middle;
        }

        #pagination button {
            background-color: #3e3e3e;
            color: #f47c20;
            border: 1px solid #f47c20;
            padding: 10px 20px;
            margin: 0 10px;
            font-family: 'Courier New', Courier, monospace;
            font-size: 16px;
            cursor: pointer;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        #pagination button:hover {
            background-color: #f47c20;
            color: #1e1e1e;
        }

        #pagination button:disabled {
            background-color: #2b2b2b;
            color: #777;
            border-color: #444;
            cursor: not-allowed;
        }

        #pageNum {
            font-size: 16px;
            color: #f47c20;
            font-weight: bold;
        }

        tr.viewed {
            opacity: 0.5;
        }