body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-image: url('Pojezna.jpg'); /* Hintergrundbild hinzufügen */
    background-size: cover; /* Bild deckt den gesamten Bereich ab */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Bild wiederholt sich nicht */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f7; /* Backup-Hintergrundfarbe, falls Bild nicht geladen wird */
}


.container {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #1d1d1f;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #0070c9;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #0056a1;
}

#drop-area {
    border: 3px dashed #0070c9;
    border-radius: 10px;
    padding: 30px;
    background-color: #f9f9f9;
    cursor: pointer;
    margin-bottom: 20px;
}

#drop-area p {
    margin: 0;
    font-size: 16px;
    color: #737373;
}

#fileElem {
    display: none;
}

#preview-area {
    margin-top: 20px;
}

.preview-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 8px;
    background-color: #f1f1f1;
    position: relative;
}

.preview-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.preview-item video {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.preview-item .file-details {
    flex-grow: 1;
}

.preview-item .file-name {
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 5px;
}

.preview-item .file-size {
    font-size: 14px;
    color: #737373;
}

.preview-item .progress-bar {
    margin-top: 5px;
    height: 8px;
    border-radius: 4px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.preview-item .progress-bar .progress {
    height: 100%;
    background-color: #0070c9;
    width: 0%;
}

.preview-item .progress-speed {
    font-size: 12px;
    color: #737373;
    margin-left: 10px;
}

.preview-item .remove-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #ff3b30;
    font-weight: bold;
    font-size: 18px;
}

button {
    padding: 20px 40px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 18px; /* Größeren Text für den Button */
    font-weight: bold;
}

button:hover {
    background-color: #0056b3; /* Dunkleres Blau beim Hover-Effekt */
}