body {
    font-family: 'Trebuchet MS';
    background-color: #111111;
    color: #888888;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: start;
    justify-content: center;
    height: 100vh;
}
h1 {
	
	color: #DDDDDD;
}

form {
    background-color: #1C1C1C;
    border-radius: 8px;
    padding: 20px;
	 margin: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
	
    display: inline-block; /* Hinzugefügte Zeile */
    margin-bottom: 2px;
    font-weight: bold;
    width: 100%; /* Hinzugefügte Zeile */
}

input {
    color: #AAAAAA;
    background-color: #333333;
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

progress {
    width: 100%;
    margin-bottom: 16px;
}

#uploadStatus {
    color: rgba(51,102,204, 0.9);
    font-weight: bold;
    margin-bottom: 16px;
}

input[type="submit"] {
    background-color: #DDDDDD;
    color: #000000;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
input[type="submit"]:hover {
    background-color:#FFFFFF;
}

