 body {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background: radial-gradient(circle at top left, #e0f7fa, #ffffff);
      font-family: 'Inter', sans-serif;
    }

    .container {
      background: #ffffff;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
      max-width: 500px;
      width: 100%;
      text-align: center;
    }

    h2 {
      margin-bottom: 10px;
      font-weight: 600;
      color: #333;
    }

    p {
      margin-bottom: 20px;
      font-size: 14px;
      color: #666;
    }

    textarea {
      font-family: 'Roboto',sans-serif;
      width: 100%;
      height: 120px;
      font-size: 16px;
      padding: 14px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      resize: none;
      box-sizing: border-box;
      transition: border-color 0.3s;
    }

    textarea:focus {
      border-color: #00bcd4;
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
    }

    .counter-box {
      background: #f5f5f5;
      padding: 10px;
      border-radius: 8px;
      margin-top: 15px;
      font-size: 15px;
      color: #444;
    }

    .warning {
      margin-top: 10px;
      color: #d32f2f;
      font-weight: bold;
      display: none;
    }
    #clearBtn {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #00bcd4;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

   #clearBtn:hover {
      background-color: #0097a7;
    }