table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

th,
td {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 12px;
    text-align: left;
    color:var(--accent-color);
}

th {
    background-color: #f0f2f5;
    color: #444;
    font-weight: 600;
}

tr:hover {
    background: #f9fafc;
}

.add-form,
.search {
    margin-top: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

input,
button {
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 14px;
}

input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 3px rgba(52, 152, 219, 0.4);
}

button {
    background-color: #3498db;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

button:hover {
    background-color: #2980b9;
}

.actions button {
    padding: 4px 8px;
    font-size: 13px;
}

.actions button[name="action"][value="delete"] {
    background-color: #e74c3c;
}

.actions button[name="action"][value="delete"]:hover {
    background-color: #c0392b;
}

.inline-input {
    width: 95%;
    background: #fcfcfc;
}

.file-info {
    text-align: right;
    color: #666;
    font-size: 13px;
}

.search input[type="text"] {
    width: 250px;
}