 
 body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.png') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.7; 
    z-index: -1; 
    pointer-events: none; 
 }

 body {
      font-family: Arial, sans-serif;
      margin: 40px auto;
      max-width: 800px;
      /*background: url('background.png') no-repeat center center fixed;
      background-size: cover;*/
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      font-family: Arial, sans-serif;
      padding-top: 100px; /* Platz fürs Logo oben */
    }

    .ts-wrapper.multi .ts-control [data-value] {
        background-color: color-mix(#92302a, #9e5052, 60%);
        background-image: linear-gradient(180deg, #92302a, #9e5052);
    }

    .ts-wrapper.multi .ts-control [data-value].active {
        background-color: color-mix(#b46e6c, #9e5052, 60%);
        background-image: linear-gradient(180deg, #b46e6c, #9e5052);
    }

    .ts-wrapper.multi .ts-control>div.active {
        border: 1px solid #b46e6c;
    }

    .ts-wrapper.multi .ts-control>div {
        border: 1px solid #92302a;
    }

    .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
        border-left: 1px solid #3f100b;
    }

    .ts-wrapper.plugin-remove_button:not(.rtl) .item.active .remove {
        border-left-color: #3f100b
    }
    
    .ts-wrapper.plugin-remove_button.rtl .item .remove {
        border-right: 1px solid #3f100b;
        margin-right: 6px
    }

    .ts-wrapper.plugin-remove_button.rtl .item.active .remove {
        border-right-color: #3f100b
    }

    div.formhead{
      font-family: Arial, sans-serif;
      /* font-weight: bold; */
      font-size: 16px;
      margin-bottom: 15px;
    }

    form {
      background-color: rgba(182, 171, 171, 0.65); /* Dunkelgrau mit Transparenz */
      padding: 45px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(2px); /* Optional: leicht verschwommener Effekt */
      margin-top: 165px; /*25px*/
    }

    .logo-container {
      position: absolute;
      top: 20px;
      width: 100%;
      text-align: center;
      z-index: 10;
    }

    .logo-container img {
      max-width: 400px;
      height: auto;
    }

    label {
      display: block;
      margin-top: 5px;
      /* font-weight: bold; */
    }

    .ts-control{
      margin-top: 3px;
      border-radius: 6px;
      border: 1px solid #ccc;
    }

    input[type="text"],
    input[type="url"],
    input[type="email"],
    select{
      border-radius: 6px;
      padding: 8px;
      margin-top: 3px;
      margin-bottom: 6px;
      border: 1px solid #ccc;
      width: 100%;
      box-sizing: border-box;
    }
    
    .select2-container{
      border-radius: 6px;
      padding: 8px;
      margin-top: 5px;
    }
    /* Hover-Effekt für Tags */
    .select2-container--default .select2-selection--multiple .select2-selection__choice:hover {
      background-color: #472fa1;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
      background-color: #5e3dc6;
      border: none;
      color: white;
      margin: 3px 3px 3px 6px;
      border-radius: 3px;
      font-size: 13px;
      padding: 1px 3px 3px 20px;
    }

    fieldset {
      margin-top: 25px;
      padding: 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      margin-bottom: 12px;
      padding: 0px 35px 0px 35px;
    }

    legend {
      font-weight: bold;
      padding: 0 5px;
      margin-bottom: 12px;
    }

    .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 28px;
      margin-left: 10px;
      vertical-align: middle;
    }

    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: .4s;
      border-radius: 26px;
    }

    .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 3px;
      bottom: 3px;
      background-color: white;
      transition: .4s;
      border-radius: 50%;
    }

    input:checked + .slider {
      background-color: #92302a;
    }

    input:checked + .slider:before {
      transform: translateX(22px);
    }

    .toggle-labels {
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
      margin-top: 5px;
    }

    .submit-btn {
      margin-top: 30px;
      padding: 12px 20px;
      background-color: #92302a;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .submit-btn:hover {
      background-color: #b46e6c;
    }

    .ts-wrapper.drop-up .ts-dropdown {
      top: auto;
      bottom: 100%;
      margin-bottom: 4px;
    }

    div.impressum {
      margin-top:20px;
      font-weight: bold;
      color:black;
    }

    div.impressum a:visited {
      color:black;
    }