body {
    background: linear-gradient(135deg, #3880ff, #7c37ad) no-repeat;
    background-size: cover;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    user-select: none;
  }

  .header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  
  .title {
    font-size: 24px;
    margin: 0;
  }
  
  .container {
    width: 535px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 40px 40px 20px;
  }
  
  h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  input[type="text"] {
    padding: 12px;
    width: 85%;
    margin-bottom: 20px;
    border: none;
    background-color: #f8f8f8;
    color: #333;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    outline: none;
    text-align: center;
    box-sizing: border-box;
  }
  
  input[type="text"]:focus {
    box-shadow: 0 2px 8px rgba(56, 128, 255, 0.4);
  }
  
  #reportButton {
    padding: 12px 36px;
    background-color: #3880ff;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
  }
  
  #reportButton:hover {
    background-color: #0e64e2;
  }

  #clearButton {
    padding: 12px 24px;
    background-color: #ff4d4d;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    margin-left: 5px;
  }
  
  #clearButton:hover {
    background-color: #e22d2d;
  }

  .disclaimer {
    font-size: 14px;
    margin-top: 20px;
    color: #777;
  }