/* Einfaches Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
  }
  
  /* Großer Hintergrund */
  .background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://oms.shopondemand.ch/images/login_bg/kirschbluete.jpg") no-repeat center center;
    background-size: cover;
    z-index: -1;
  }
  
  /* Logo-Platzhalter */
  #logo-placeholder {
    text-align: center;
    margin: 30px auto;
    width: 300px; /* oder beliebige Größe */
    height: 100px; /* Platz für das Logo */
    background-color: white;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* rpounded corners */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* optional: animation */
    animation: fadeIn 1s ease-in-out;

  }
  
  /* Hauptcontainer für Upload */
  .upload-container {
    width: 400px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255,255,255,0.8);
    border-radius: 5px;
    text-align: center;
  }
  
  /* Input-Felder */
  .upload-container input[type="text"],
  .upload-container input[type="email"] {
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: block;
  }
  
  /* Button */
  #upload-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
  }
  
  /* Drop-Zone */
  #drop-zone {
    margin-top: 20px;
    padding: 40px;
    border: 2px dashed #bbb;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Drop-Zone Hover Effekt */
  #drop-zone.hover {
    background-color: #f0f0f0;
  }
  
  /* Fortschrittsbalken */
  .progress {
    width: 80%;
    margin: 20px auto;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    display: none; /* zunächst unsichtbar */
  }
  .progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4caf50; /* Grün, kann angepasst werden */
    transition: width 0.3s;
  }

  #file-preview {
    margin-top: 20px;
    text-align: left;
  }
  
  #file-preview h2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  #file-list {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
  }
  