.toolbar {
  height: 50%;
  background-color: transparent;/* #1b1a1a;*/
  border-radius: 8px;
  max-width: 35%;
  margin-left: 1%;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 0.4em;
}

.toolbar label{
  cursor: pointer;
}

.option-embedding {
  border: 1px solid transparent;
  padding: 5px;
}

.option-entry{
  border: 2px solid transparent; /*#4a4747;*/
  background-color: #103050;
  padding: 5px;
  border-radius:8px;
}

/*.option-entry:hover{
  border: 2px solid transparent;
  background-color: #393737;
  padding: 5px;
  border-radius:8px;
}*/

.buttonList button{
  width: 100%;
  margin: 3px;
}

.header{
  display: flex;
  justify-content: space-between;
  height: 70px;
  max-height: 70px;
  padding-top: 10px;
}


.optionalButtonMap{
  display: inline-grid;
  grid-template-columns: 50px 50px;
}

.contract-area{
  width: 60%;
  text-align: right;
  position: sticky;
  top: 0px;
  max-height: fit-content;
}

.contractPlane-wrapper{
    overflow:hidden;
    border-radius: 8px;
    padding: 0px;
    margin: 0px;
    max-height: fit-content;
    margin-top: 10px;
}

.contractPlane {
    width: auto;
    max-height: 80vh;   
    background-color: #f9f9f9;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    text-align: start;
    padding: 1em;
}

li {
  list-style-type: none;
  padding-left: 0;
}
ul, ol {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0;       /* Remove default left margin */
    padding-left: 0m;   /* Adjust to control indentation */
    padding-inline-start: 0px;
}


.toolbar ul{
  margin-left: 0;       /* Remove default left margin */
  padding-left: 0rem;   /* Adjust to control indentation */
  
}

.radio-choice{
  padding-left: 0.2em;
}


.radio { 
  /*outline: 5px solid red;
  outline-offset: 1px;*/
  margin-top: 5px;
  margin-left: 0px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0);
  transition: box-shadow 150ms;
  cursor: pointer;
}
.radio:hover { 
  /*outline: 5px solid rgba(160, 156, 156, 0.05);
  outline-offset: 1px;*/
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.2);
  margin-top: 5px;
  margin-left: 0px;
  border: 2px solid rgb(0, 0, 0);
  border-radius: 8px;
  padding: 10px;
  background-color: #393737;
  transition: box-shadow 150ms;
  
}

body {
  background-color: #09223b;
  color: white;
  padding: 10px;
  font-family: sans-serif;
  text-align: center;
}

/* Headings */
.contractPlane h1 {
    font-size: 1.1em;
    margin-bottom: 0.2em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.3em;
  }
.toolbar h1{
    font-size: 1.3em;
    margin-bottom: 0.6em;
    margin-top: 0.6em;
    font-weight: normal;
}


  .plane {
    display: flex;
    justify-content: center;
  }
  
  .contractPlane h2 {
    font-size: 0.6em;
    margin-top: 0px;
    margin-bottom: 0px;
    color: #333;
  }
  
  .contractPlane h3 {
    font-size: 1.25em;
    margin-top: 1.2em;
    color: #444;
  }
  
  .contractPlane h4,
  .contractPlane h5,
  .contractPlane h6 {
    font-size: 1.1em;
    margin-top: 1em;
    font-weight: bold;
    color: #555;
  }
  
  /* Paragraphs */
  .contractPlane span {
    margin-bottom: 1em;
    color: #333;
  }
  .contractPlane p {
    margin-bottom: 1em;
    color: #333;
  }
  
  /* Scrollbar Styling (optional, for modern look) */
  .contractPlane::-webkit-scrollbar {
    width: 8px;
  }
  
  .contractPlane::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
  }
  
  .contractPlane::-webkit-scrollbar-track {
    background-color: #f9f9f9;
  }

  .button-container {
    display: flex;
    justify-content: center; /* horizontal zentrieren */
    align-items: center;     /* vertikal zentrieren */
    height: 100px;           /* oder beliebige Höhe */
    width: 100%;             /* optional */
  }
  
  
  .react-switch-checkbox {
    height: 0;
    width: 0;
    visibility: hidden;
  }
  
  .react-switch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 30px;
    height: 15px;
    background: grey;
    border-radius: 100px;
    position: relative;
    transition: background-color .2s;
  }
  
  .react-switch-label .react-switch-button {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 11px;
    height: 11px;
    border-radius: 50px;
    transition: 0.2s;
    background: #fff;
    box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
  }
  
  .react-switch-checkbox:checked + .react-switch-label .react-switch-button {
    left: calc(100% - 2px);
    transform: translateX(-100%);
  }
  
  .react-switch-label:active .react-switch-button {
    width: 5px;
  }


/* CSS */

.export-button-area{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  max-width: 520px;
}


.export-button {
  align-items: center;
  background-color: #0A66C2;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  max-height: fit-content;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
}

.export-button:hover,
.export-button:focus { 
  background-color: #16437E;
  color: #ffffff;
}

.export-button:active {
  background: #09223b;
  color: rgb(255, 255, 255, .7);
}

.export-button:disabled { 
  cursor: not-allowed;
  background: rgba(0, 0, 0, .08);
  color: rgba(0, 0, 0, .3);
}

.anwalt-button{

  align-items: center;
  background-color: #ffffff;
  border: 0;
  border-radius: 100px;
  box-sizing: border-box;
  color: #0A66C2;
  cursor: pointer;
  display: inline-flex;
  font-family: -apple-system, system-ui, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Fira Sans", Ubuntu, Oxygen, "Oxygen Sans", Cantarell, "Droid Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Lucida Grande", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 20px;
  max-width: 480px;
  max-height: fit-content;
  min-height: 40px;
  min-width: 0px;
  overflow: hidden;
  padding: 0px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  touch-action: manipulation;
  transition: background-color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, box-shadow 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s, color 0.167s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  margin-right: 1em;

}

.extra-info {
  display: none;
  line-height: 30px;
  font-size: 12px;
	position: absolute;
  top: 0;
  left: 50px;
}

.info:hover .extra-info {
  display: block;
}

.info {
  font-size: 20px;
  margin-right: 1em;
  width: 20px;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}
