body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #1f2937;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
}
.card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Neues Layout für die Vorschau-Container */
#imagePreviews {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.image-preview-container {
    width: 200px; /* Feste Breite für größere Darstellung */
    height: auto; /* Höhe passt sich dem Aspect Ratio an */
    overflow: visible;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    display: flex; /* Zentriert das Bild im Container */
    justify-content: center;
    align-items: center;
    background-color: #f9fafb; /* Leichter Hintergrund für besseren Kontrast */
}

.image-preview {
    width: 100%;
    height: auto; /* Erhält originales Seitenverhältnis */
    object-fit: contain; /* Stellt sicher, dass das Bild vollständig sichtbar ist, ohne Zuschneiden */
    user-select: none;
    border-radius: 0.5rem; /* Rundet die Ecken des Bildes ab */
    max-height: 300px; /* Optional: Begrenzt sehr hohe Bilder, um Layout-Probleme zu vermeiden */
}

button, select {
    transition: all 0.3s ease;
}
button:hover, select:hover {
    transform: translateY(-1px);
}