/* upload-config.css */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #1e1e1e; /* Dunkler Hintergrund */
    color: #b0b0b0; /* Heller Grauton für den Text */
    margin: 0;
}

/* Header-Styling */
header {
    background-color: #1b5e20; /* Dunkler Grünton */
    color: #e0e0e0; /* Helles Grau für den Text */
    padding: 15px 0;
}

.header-content {
    text-align: center; /* Header-Inhalt zentrieren */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px; /* Abstand zwischen den Links */
}

nav ul li a {
    color: #e0e0e0; /* Helles Grau für Links */
    text-decoration: none;
}

/* Actions-Styling */
.actions {
    display: flex;
    justify-content: center; /* Zentriert die Elemente */
    align-items: center;
    margin-bottom: 20px; /* Abstand nach unten */
}

/* Container */
.container {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #2a2a2a; /* Dunklerer Hintergrund für den Container */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); /* Etwas kräftigerer Schatten */
}

/* Formularelemente */
form {
    padding: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
    color: #e0e0e0; /* Heller Text für Labels */
}

input[type="text"],
textarea,
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    background-color: #3c3c3c; /* Dunkles Input-Feld */
    color: #c0c0c0; /* Textfarbe in Eingabefeldern */
    border: 1px solid #444; /* Dunkler Rand */
    border-radius: 5px; /* Leicht abgerundete Ecken */
    margin-bottom: 15px; /* Abstand zwischen den Feldern */
    box-sizing: border-box; /* Box-Sizing für Padding und Border */
}

textarea {
    resize: vertical; /* Erlaubt vertikale Größenänderung */
    height: 120px; /* Höhe für Textarea */
}

/* Buttons */
button {
    padding: 12px 25px;
    background-color: #28a745; /* Gleicher Grünton für Buttons */
    color: white; /* Weißer Text für Buttons */
    border: none; /* Keine Border */
    border-radius: 4px; /* Abgerundete Ecken */
    cursor: pointer; /* Zeigt den Cursor als Pointer */
    transition: background-color 0.3s ease; /* Sanfter Übergang für Hover */
}

button:hover {
    background-color: #218838; /* Etwas dunklerer Grünton bei Hover */
}

/* Meldungen */
#message {
    margin-top: 20px;
    color: #ffffff; /* Weißer Text für Meldungen */
    background-color: #444; /* Dunkler Hintergrund für Meldungen */
    padding: 15px; /* Innenabstand */
    border-radius: 5px; /* Abgerundete Ecken */
}

/* Anpassung der Datei-Input-Schaltfläche */
input[type="file"] {
    padding: 8px;
    border: none; /* Keine Border */
    background-color: #444; /* Dunkler Hintergrund für Datei-Input */
    color: #c0c0c0; /* Textfarbe */
    cursor: pointer; /* Zeigt den Cursor als Pointer */
}

input[type="file"]::file-selector-button {
    background-color: #28a745; /* Gleicher Grünton wie in style.css */
    color: white; /* Weißer Text für Buttons */
    padding: 8px; /* Innenabstand */
    border: none; /* Keine Border */
    border-radius: 5px; /* Abgerundete Ecken */
    cursor: pointer; /* Zeigt den Cursor als Pointer */
}

input[type="file"]::file-selector-button:hover {
    background-color: #218838; /* Etwas dunklerer Grünton bei Hover */
}