body {
            background-color: #000;
            color: #f4f6f9;
            font-family: Arial, sans-serif;
        }
        .chat-header {
            margin-top: 50px;
            padding: 20px;
            background-color: #343a40;
            color: #f4f6f9;
            border-radius: 8px;
            text-align: center;
        }
        .search-form {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }
        .search-form input {
            width: 200px;
        }
        .search-actions {
            display: flex;
            align-items: center;
        }
        .home-button, .refresh-button {
            margin-right: 10px;
        }
        .home-button a, .refresh-button a {
            text-decoration: none;
            color: #ffffff;
            background-color: #007bff;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
        }
        .home-button a:hover, .refresh-button a:hover {
            background-color: #0056b3;
        }
        .pagination {
            justify-content: center;
            margin-top: 20px;
        }
        .pagination .page-item {
            font-size: 0.875rem; /* Smaller font size */
        }
        .pagination .page-link {
            padding: 0.25rem 0.5rem; /* Smaller padding */
            font-size: 0.875rem; /* Smaller font size */
        }
        .pagination .page-item.active .page-link {
            background-color: #007bff; /* Active page color */
            border-color: #007bff; /* Active page border color */
            color: #ffffff; /* Active page text color */
        }
        .pagination .page-link {
            border-radius: 0.25rem; /* Rounded corners */
        }
        .chat-log {
            margin-top: 30px;
        }
        .chat-card {
            border-radius: 8px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            background-color: #212529;
            border: 1px solid #343a40;
        }
        .chat-message {
            padding: 15px;
        }
        .chat-message .name-ct { color: #00bcd4; font-weight: bold; }
        .chat-message .name-t { color: #ff5722; font-weight: bold; }
        .chat-message .name-gray { color: #6c757d; font-weight: bold; }
        .chat-message .message-dead { color: #28a745; }
        .chat-message .date-time { color: #ffffff; }
        .footer {
            margin-top: 50px;
            padding: 10px;
            background-color: #343a40;
            color: #f4f6f9;
            text-align: center;
            border-radius: 8px;
        }
        .footer-link {
            color: #f4f6f9;
            text-decoration: none;
        }
        .footer-link:hover {
            text-decoration: underline;
        }