/*
 * documents.css - Styling til Dokumenter-siden.
 * Indeholder upload-formular, dokument-liste og download-knapper.
 */

/* ===== UPLOAD ===== */
.upload-section {
    margin-bottom: 20px;
}

.upload-form-wrapper {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 16px;
    margin-top: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 4px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 8px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 13px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

/* ===== DOKUMENT-LISTE ===== */
.doc-list {
    margin-top: 12px;
}

.doc-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-name {
    color: #2980b9;
    text-decoration: none;
    font-size: 14px;
}

.doc-name:hover {
    text-decoration: underline;
}

.doc-meta {
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.download-btn {
    color: #27ae60;
    text-decoration: none;
    font-size: 22px;
    padding: 4px 8px;
}

.download-btn:hover {
    color: #2ecc71;
}
