body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f4f6f8;
    }
    .header {
      background: #2563eb;
      color: #fff;
      padding: 16px;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
    }
    .container {
      padding: 16px;
    }
    .card {
      background: #fff;
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 16px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .card h3 {
      margin: 0 0 8px 0;
    }
    .card p {
      margin: 0 0 12px 0;
      color: #555;
    }
    .textarea-wrapper {
      position: relative;
      display: inline-block;
    }
    textarea {
          width: 100%;
          min-height: 6rem;
          padding: 0.75rem;
          font-family: 'Noto Sans';
          font-size: 1rem;
          line-height: 1.5;
          border: 1px solid #ccc;
          border-radius: 8px;
          resize: vertical;        /* allow up/down resize only */
          outline: none;
          box-sizing: border-box;
        }
    .clear-btn {
      position: absolute;
      right: 8px;
      top: 8px;
      cursor: pointer;
      font-size: 18px;
      color: #888;
      user-select: none;
    }

    .clear-btn:hover {
      color: #f00;
    }  
   
    .btn {
      display: inline-block;
      padding: 5px 5px;
      background: #2563eb;
      color: #fff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 13px;
      cursor: pointer;
      hover: opacity: 0.9;
    }

        .btn:hover {
          background: #DEC8AF;
          color: #1e3a8a;
        } 
    .nav {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #fff;
      border-top: 1px solid #ddd;
      display: flex;
    }
    .nav a {
      flex: 1;
      padding: 12px 0;
      text-align: center;
      text-decoration: none;
      color: #333;
      font-size: 14px;
    }
    .nav a.active {
      color: #2563eb;
      font-weight: bold;
    }
    input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    .borderless {
      border: none;        /* removes border */
      background: none;    /* removes background */
      padding: 8px 12px;   /* optional padding */
      cursor: pointer;     /* pointer cursor on hover */
      font-size: 16px;     /* optional font size */
    }
    * {
        -webkit-user-select: text;
        user-select: text;
      }
   .round-dropdown.small {
        padding: 4px 30px 6px 12px;
        border-radius: 20px;
        font-size: 1rem;
    }
        