body {
  background-color: lightblue;
}

html * {
  font-family: "Source Sans Pro", sans-serif;
}

hr {
  border: none;
  height: 0.3vh;
  background-color: white; /* Schwarz */
}


p.q1 {
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  font-size: 2vw;
}

p.q2 {
  text-align: left;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  font-size: 1.5vw;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 10px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

/* [class^="col-"] {
  border: 1px solid red;
} */

.quoteBox {
  background: white;
  color: rgb(94, 93, 93);
  padding: 0.25rem 1rem;
  border: 0.3vw solid rgb(180, 178, 178);
}

.clickBox {
  height: 3vw;
  width: auto;
  font-size: 1.5vw;
  font-weight: bold;
  margin-top: 1vw;
}

.picInfoBox {
  display: flex;
  justify-content: space-between;
  background: white;
  color: rgb(94, 93, 93);
  padding: 0.5rem 0.5rem;
  border: 0.3vw solid rgb(180, 178, 178);
  align-items: flex-start;
  height: auto; /* Sicherstellen, dass die Höhe automatisch ist */
}

.picBox {
  width: 66vw;
  display: flex;  
  align-items: flex-start;
  justify-content: center;
}

.picBox img {
  width: 100%;
  height: auto;
  display: block;
}

.infoBox {
  width: 33vw;
  max-height: 66vw; /* Höhe auf die Breite der picBox setzen */
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: white;
  color: rgb(94, 93, 93);
  padding: 0.25rem 0.25rem;
  border: 0.3vw solid rgb(180, 178, 178);
  margin-left: 1rem;
  margin-bottom: 0.25rem;
  box-sizing: border-box;
}

.infoItem {
  margin-bottom: 1rem;
  font-size: 1.5vw;
  border: none;
}

.comment {
  margin-bottom: 1vh;
}

.responsive {
  width: 32vw;
  height: auto;
}

p.title_main {
  text-align: center;
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 2.7vw;
}

p.title_sub1 {
  text-align: center;
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 2.7vw;
}

p.title_sub2 {
  text-align: right;
  color: white;
  font-weight: bold;
  font-style: italic;
  font-size: 25px;
}

p.title_sub3 {
  text-align: center;
  color: white;
  font-weight: bold;  
  font-size: 2vw;
}

@media (orientation: landscape) {
  #addressBox {
    display: flex;    
    justify-content:space-between;
  }
  #kommentarText {
      width: 100%;
      font-size: 1.3vw;
  }

  #map {
    height: 90vh; 
    width: 98vw; 
    border: none; 
    margin-top: 8vh; 
    padding: 0;
  }

  p.title_sub1 {
      text-align: center;
      color: white;
      font-weight: bold;
      font-style: italic;
      font-size: 3vw;
  }
}

@media (orientation: portrait) {
  #addressBox {
    display: flex;    
    justify-content:space-between;
  }
  
  #kommentarText {
      width: 100%;
      font-size: 1.4vw;
  }

  #map {
    height: 90vh; 
    width: 96vw; 
    border: none;    
  }
}

/* Elemente für import Startseite */

    /* form {
        background-color: #f5f5f5;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        max-width: 1900px;
        margin: 20px 0;
        font-family: 'Segoe UI', sans-serif;        
    } */

    .upload-container {           
        display: flex;
        align-items: center;
        justify-content:space-evenly;
        gap: 12px;
        /* border:#005fa3 1px solid; */
        
    }

    input[type="file"] {
        font-size: 2vw;
        padding: 6px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: white;
    }

    #uploadBtn {
        display: none;
        font-size: 2vw;
        padding: 8px 16px;
        background-color: #0078D4;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        transition: background-color 0.3s ease;        
    }

    #uploadBtn:hover {
        background-color: #005fa3;
    }

/* Elemente für das Kalenderfeld */
  .date-container {
    display: flex;
    justify-content: center;
    margin-top: 1vw;
  }

  .flatpickr-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 6px;
    padding: 0.3vw 0.6vw;
    background-color: #f9f9f9;
  }

  #dateFor {
    width: 10vw;
    font-size: 1.4vw;
    font-weight: bold;
    border: none;
    background: transparent;
    outline: none;
  }

  [data-toggle] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6vw;
    margin-left: 0.5vw;
  }

