body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
        }
        h1 {
            color: #d32f2f;
            text-align: center;
            margin-bottom: 30px;
        }
        .fraud-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 30px;
        }
        .fraud-table th, .fraud-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        .fraud-table th {
            background-color: #f44336;
            color: white;
        }
        .fraud-table tr:nth-child(even) {
            background-color: #f2f2f2;
        }
        .fraud-table tr:hover {
            background-color: #e6e6e6;
        }
        .site-url {
            color: #d32f2f;
            font-weight: bold;
            word-break: break-all;
        }
        .warning {
            background-color: #fff3e0;
            padding: 15px;
            border-left: 5px solid #ff9800;
            margin-bottom: 20px;
            text-align: center;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #000000;
            font-size: 0.9rem;
        }
        .report-form {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        .form-control {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .btn {
            background-color: #f44336;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .btn:hover {
            background-color: #d32f2f;
        }