/*
body{width: 40em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif;}
.code{background-color: lightgray; font-family: Source Code Pro;}
a{text-decoration: none; color: black; transition: 0.3s;}
a:hover{color: #30bbda;}
h1{color: #30bbda;}
h3{color: #0d2142;}
.title-flex{display: flex; width: 100%; padding-top: 1em;}
.title-flex-title{flex: 2;}
.title-flex-image{flex: 1;max-height: 5em;}
.maintenance{background-color:rgba(245, 200, 39, 0.2); padding: 1rem;}
@media (max-width: 1000px){ body { width: 90%; margin: 3rem; }}
*/

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #000;
    font-weight: 400;
  }

  header, footer {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 30px 0;
  }

  .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  footer .footer-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  header h1 {
    font-size: 2.5rem;
    color: #30bbda;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-weight: 700;
  }

  /* Sprach-Select Button */
  select#language {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #30bbda;
    border: none;
    color: white;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    padding: 8px 48px 8px 14px; /* mehr rechts für größeren Pfeil */
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 0 6px 12px rgba(48, 187, 218, 0.6);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='white' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px 20px;
  }

  select#language:hover,
  select#language:focus {
    background: #2399c5;
    outline: none;
    box-shadow: 0 8px 16px rgba(35, 153, 197, 0.8);
  }

  select#language option {
    background-color: white;
    color: black;
  }

  main {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 10px;
  }

  section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 50px -10px rgba(53, 65, 91, 0.1);
    margin: 20px 0;
  }

  section h2 {
    color: #30bbda;
    margin: 0 0 16px 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: left;
  }

  section p {
    line-height: 1.6;
  }

  a {
    color: #30bbda;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover, a:focus {
    color: #0e2243;
    /*text-decoration: underline;*/
  }

  .code-wrapper {
    position: relative;
    margin: 16px 0;
  }

  .code {
    background: #f2f2f2;
    color: #000;
    padding: 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-weight: 600;
    /*font-family: 'Courier New', Courier, monospace;*/
    font-family: 'Source Code Pro', Courier, monospace;
    border: 2px solid #d0d0d0;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    line-height: 1.3;
    margin: 0;
  }

  .copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #30bbda;
  }

  .downloads a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #30bbda;
    color: white;
    font-weight: 600;
    transition: 0.3s;
  }

  .downloads a i {
    margin-right: 8px;
  }

  .downloads a:hover {
    background: #0e2243;
  }

  .footer-text {
    color: #000;
    font-size: 0.9rem;
  }

  .footer-text a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
  }

  .lang {
    display: none;
  }

  .lang.active {
    display: block;
  }

  .highlight {
    color: #000;
    font-weight: 700;
  }