body {
      font-family: arial, sans-serif;
      background: #fff;
      margin: 0;
      padding: 180px 20px 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .fixed-bar {
      position: fixed;
      left: 0;
      right: 0;
      height: 50px;
      background: #f5f5f5;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 1000;
    }
	
    .fixed-top {
	  background: #fff;
      top: 0;
    }
	
    .fixed-bottom {
      bottom: 0;
      border-top: 1px solid #ddd;
	  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    }
	
    .bar-links {
      display: flex;
      gap: 15px;
    }
	
    .bar-links a {
      text-decoration: none;
      color: #404040;
      font-size: 0.9rem;
    }
	
    .bar-links a:hover {
      text-decoration: underline;
    }

    h1 {
      font-size: 1.8rem;
      margin-bottom: 40px;
	  margin-top: 70px;
      font-weight: normal;
      color: #202124;
      text-align: center;
      text-transform: uppercase;
    }
	
    h1 small {
      font-size: 1.0rem;
    }
	
    textarea {
      width: 100%;
      max-width: min(100%, 1200px);
      box-sizing: border-box;     
      border: 1px solid #dfe1e5;
      border-radius: 22px;
      padding: 12px 20px;
      font-size: 1rem;
      resize: none;
      margin-bottom: 20px;
      position: sticky;
      top: 60px; 
      background: white;
	  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
      z-index: 10;
    }
	
	textarea:hover {
        border-color: #eee; 
        box-shadow: 0 2px 12px rgba(0,0,0,0.1); 
        background-color: #fff; 
    }
	
    textarea:focus {
      border-bottom: 1px solid transparent;
    }
	
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      width: 100%;
      max-width: 1200px;
    }
	
    .card {
      background: #ffffff;
      border: none;
      border-radius: 12px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
	
    .card h2 {
      font-size: 0.75rem;
      font-weight: normal;
      text-transform: uppercase;
      color: #404040;
      margin: 0 0 10px;
    }
	
    .output {
      font-size: 1.4rem;
      word-wrap: break-word;
      white-space: pre-wrap;
      margin-bottom: 10px;
      font-family: system-ui, sans-serif;
    }
	
    .card .actions {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }
	
    .card button, .card a {
      background: #f5f5f5;
      border: none;
      border-radius: 4px;
      padding: 6px 8px;
      cursor: pointer;
      font-size: 0.75rem;
      text-decoration: none;
      color: #404040;
      display: inline-block;
    }
	
    .card button:hover, .card a:hover {
      background: #e5e5e5;
    }
	
    .text {
      font-size: 0.875rem;
      word-wrap: break-word;
      white-space: pre-wrap;
      margin-bottom: 0px;
    }
	
	.menu {
    position: fixed; 
    top: 0; left: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: .75rem;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
    padding: .4rem;
    display: none;
    z-index: 9999;
	font-size: 0.95rem;
    max-width: min(92vw, 320px);
    max-height: min(60vh, 420px);
    overflow: auto;
  }
  .menu.open { display:block; }

  .item {
    display:block;
    padding:.6rem .7rem;
    border-radius:.6rem;
    text-decoration:none;
    color:var(--fg);
  }
  .item:hover, .item:focus {
    background:#f1f5f9;
    outline:none;
  }
  
  hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,.3);
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin: 0.5em 0;
    position: relative;
  }
  
  hr:before,hr:after {
    content: '';
    position: absolute;
    bottom:0px;
    height: 5em;
    width: 100%;
    background: radial-gradient(ellipse at bottom, rgba(255,255,255,0.35) 0%,rgba(255,255,255,0) 70%);
    z-index:0;
  }
  
  hr:after {
    top:0px;
    bottom:auto;
    height: 1.5em;
    background: radial-gradient(ellipse at top, rgba(0,0,0,0.06) 0%,rgba(0,0,0,0) 70%);
  }

/* Große Tablet */
@media (max-width: 1400px) {
  textarea {
    max-width: 88vw;
    font-size: 1.rem;
    padding: 10px 14px;
    border-radius: 18px;
  }
  
  body {
   padding: 90px 20px 100px;
  }
}

/* Große Tablet */
@media (max-width: 1200px) {
  textarea {
    max-width: 100vw;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 18px;
  }
  
  body {
   padding: 90px 20px 100px;
  }
}
  
  
/* Tablet */
@media (max-width: 1024px) {
  textarea {
    max-width: 100vw;
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 18px;
  }
  
  .text {
    display: none;
  }
  
  body {
   padding: 70px 20px 100px;
  }
}

/* Smartphone */
@media (max-width: 600px) {
  textarea {
    max-width: 100vw;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 14px;
  }
  
  .text {
    display: none;
  }
  
  body {
   padding: 90px 20px 100px;
  }
}