body {
    background-color: #8B0000;
    color: #FFD700;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    background-image: radial-gradient(circle, #a80000 10%, #600000 90%);
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    border: 5px solid #FFD700;
    background-color: #333;
    padding: 20px;
    box-shadow: 0 0 25px rgba(0,0,0,0.9);
}

h1 { text-transform: uppercase; text-shadow: 2px 2px #000; margin-top: 0; }

/* --- DAS HAUPTELEMENT (Fr Index UND Admin) --- */
.download-item {
    background-color: #444;
    margin: 15px 0;
    padding: 15px;
    border-left: 6px solid #FFD700; /* Der goldene Balken links */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    transition: background-color 0.2s, transform 0.1s;
}

.download-item:hover {
    background-color: #4a4a4a;
}

/* Infos (Text) */
.file-info {
    text-align: left;
    flex-grow: 1; /* Nimmt den Platz in der Mitte ein */
    padding: 0 15px;
}

.filename-small {
    color: #aaa;
    font-size: 0.8em;
    display: block;
}

/* --- BUTTONS --- */
.btn {
    background-color: #c0392b;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 0.9em;
}
.btn:hover { background-color: #e74c3c; }

/* Spezieller Lsch-Button (Schwarz/Rot) */
.btn-delete {
    background-color: #111;
    border-color: #e74c3c;
    color: #e74c3c;
}
.btn-delete:hover {
    background-color: #e74c3c;
    color: white;
}

/* --- DRAG & DROP GRIFF --- */
.handle {
    font-size: 1.8em;
    color: #FFD700;
    cursor: grab;
    padding-right: 10px;
    border-right: 1px solid #555; /* Trennlinie zum Text */
    line-height: 1;
}
.handle:active { cursor: grabbing; }

/* Dragging Effekt */
.sortable-ghost {
    opacity: 0.6;
    background-color: #FFD700;
    color: #000;
    border: 2px dashed #000;
}

/* Formulareingaben */
input[type="text"], input[type="file"], input[type="password"] {
    padding: 10px; margin: 5px; width: 70%; 
    background: #eee; border: none;
}