/* ===== DOWNLOAD ===== */

.download-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 15px;
}

.download-table th,
.download-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.download-table th {
    background: #e0f7fa;
    font-weight: 700;
}

.download-table tr:hover {
    background: #f5f5f5;
}

input[type="file"]::file-selector-button {
  margin-right: 40px;
  background-color: white;
  font-size: 22px;
  font-weight: bold;
  color: maroon;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button {
    padding: 8px;
    font-size: 17px;
    background: darkred;
    color: #fff;
    border-radius: 8px;
    border: none;
}


.download-btn {
    display: inline-block;
    padding: 6px 12px;
    background: green;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.download-btn:hover {
    background: gold;
}

.delete-btn {
    display: inline-block;
    padding: 6px 12px;
    background: red;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.delete-btn:hover {
    background: gold;
}



/* --- Dark mode --- */

body.dark-mode .download-table th {
    background: #4CAF50;
    color: #fff;
}

body.dark-mode .download-table tr:hover {
    background: rgba(255,255,255,0.1);
}

body.dark-mode .download-btn {
    background: #333;
}

/* --- Puste --- */

.download-empty {
    margin-top: 20px;
    font-style: italic;
}

/* --- Mobile --- */

@media (max-width: 600px) {
    .download-table th:nth-child(2),
    .download-table td:nth-child(2),
    .download-table th:nth-child(3),
    .download-table td:nth-child(3) {
        display: none;
    }
}
