body,
html {
    width: 100%;
    height:100%;
    
  

}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  font-size: 14px;
  font-weight: 400;
  overflow-x: hidden;
  transition: opacity 1s;
  min-width: 330px;
  
}

html h1, h2, h3, p, a, table {
    font-family: SourceCodePro;
}

h1, h2, h3 {
    
    color: 
}

a {
  font-weight: 600;
  color: #314584;
  text-decoration: none;
  letter-spacing: 1px;
  position: relative;
}

a:focus,
a:hover {
  color: rgba(44, 44, 44, 0.8);
  text-decoration: none;
}

#mySidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px; /* Breite der Sidebar */
  height: 100%;
  background-color: #111; /* Farbe der Sidebar */
  z-index: 101; /* Höherer z-index als das Overlay */
}
/* Stelle sicher, dass der Header über dem Overlay liegt */
.w3-top {
  position: fixed;
  width: 100%;
  z-index: 100; /* Hoher Wert, damit die Navbar vor anderen Inhalten angezeigt wird */
}






#about {
  position: relative;
  background-image: url('../img/adobe2.jpeg'); /* Pfad zum Bild */
  background-position: center;
  background-size: cover;
  min-height: 400px; /* Höhe des Containers anpassen */
  color: white;
  overflow: hidden;
  z-index: 1;
}

/* Overlay */
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Dunkleres Overlay */
  opacity: 0.7; /* Fallback für ältere Browser */
  z-index: 1;
  pointer-events: none; /* Damit das Overlay keine Klicks blockiert */
}

#about h3,
#about p {
  position: relative;
  color: white;
  z-index: 2; /* Überlagert das transparente Overlay */
}

/* Zusätzliche Regel für mobile Geräte */
@media (max-width: 768px) {
  #about {
    min-height: 300px; /* Höhe für mobile Geräte anpassen */
  }
}






#uploadtable {
  border-collapse: collapse;
  width: 100%;
text-align: center;
}

#uploadtable tr{
text-align: center;
}
#uploadtable td, #uploadtable th {
  border: 1px solid #ddd;
  padding: 8px;
}


#uploadtable tr:nth-child(even){background-color: #f2f2f2;}

#uploadtable tr:hover {background-color: #ddd;}

#uploadtable th {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #3E4643;
  color: white;
}

.upload_area {

    background-color: beige;
    padding-top: 30%;
    width: 100%;
    height: 100%;
}

.download_area {
    background-color: bisque;
    width: 100%;
    height: 100%;
    padding-top: 5%;
    overflow: scroll;
}

.main-view {
   
    background-color: darkslategrey;
    text-align: center; 
    height: inherit;
    overflow: auto;
    
    
}

.row {
    height: 100%;
    width 100%;
    padding: 0;
}

/*Buttons*/

.btn-upload {
    background-color: coral;
    padding: 15px 50px;
    margin-top:10%;
    margin-bottom: 10%;
    border: 4px solid;
    font-weight: bold;
    color: black;
}



.btn-upload:hover {
    background-color: darkorchid;
}

.btn-share, .btn-shared-link{
    float: right;
    margin-right: 2%;
}

.btn-share, btn-shared-link:hover {
    cursor: pointer;
}

.btn-shared-link {
    color:darkgreen;
    fill: darkgreen;
}

.btn-del {
    color:red;
    float: right;
    margin-right: 2%;
    
}
.btn-del:hover {
    cursor:pointer;
  
}

.btn-copy{
    float: right;
    margin-right: 2%;
}

.btn-copy:hover {
    cursor: pointer;
}



.bg-text h1{
    color: cadetblue;
    text-transform: uppercase;
    font-size: 300%;
}

.blurry-text {
   color: transparent;
   text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.qr_img {
    height: 10px;
    width: 10px;
}

.qr_img:hover {
    height: 100px;
    width: 100px;
}

.akkordeon {
 border: 2px solid grey;
padding: 10px 1px;
}

.akkordeon:hover {
    cursor: pointer;
}

/*FAQ Bereich*/

    /* Style für den Inhalt der Antwort */
    .antwort {
      display: none; /* Antwort wird zunächst ausgeblendet */
      margin-left: 20px; /* Einrückung der Antwort */
    }
    /* Style für die Frage */
    .frage {
      background-color: #f5f5f5; /* Hintergrundfarbe der Frage */
      padding: 10px; /* Abstand der Frage vom Rand */
      margin-bottom: 5px; /* Abstand zwischen den Fragen */
      cursor: pointer; /* Mauszeiger wird zur Hand */
    }
    /* Style für den Plus- und Minus-Button */
    .button:before {
      content: "+"; /* Plus-Zeichen */
      font-size: 20px;
      margin-right: 10px;
    }
    .button.open:before {
      content: "-"; /* Minus-Zeichen */
    }


