body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
h2 {
    color: #333;
}
form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;                /* Flexbox aktivieren */
    flex-direction: column;       /* Elemente in einer Spalte anordnen */
    align-items: left;          /* Elemente in der Mitte zentrieren */
}
input[type="text"],
input[type="email"],
input[type="file"],
input[type="submit"] {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    border-style: box-shadow;
}
input[type="submit"] {
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: auto;                /* Breite des Buttons anpassen */
}
input[type="submit"]:hover {
    background-color: #4cae4c;
}
#dropZone {
    width: 100%;
    height: 150px;
    border: 2px dashed #007bff;
    border-radius: 8px;
    text-align: center;
    line-height: 35px;
    color: #007bff;
    margin-bottom: 15px;
    margin-top: 30px;
    transition: border-color 0.3s ease, color 0.3s ease;
}
#dropZone.hover {
    border-color: #0056b3;
    color: #0056b3;
}
progress {
    width: 100%;
    height: 20px;
    margin-top: 10px;
}
.thumbnail-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}


  #dropZone {
    border: 2px dashed #007bff;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
  }
  .thumbnail {
    display: inline-block;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    position: relative;
  }
  .thumbnail img {
    max-width: 100px;
    max-height: 100px;
  }
  .delete-button {
    position: absolute;
    top: 0;
    right: 0;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
  }
  .hover {
    background-color: #f0f8ff; /* Leicht blauer Hintergrund während des Drag & Drop */
  }
