/* Enhanced styling for tables and forms */
.mpfm-upload-form {
    margin-bottom: 20px;
}

.mpfm-upload-form label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

.mpfm-upload-form input[type="file"],
.mpfm-upload-form select {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.mpfm-upload-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mpfm-upload-form input[type="submit"]:hover {
    background-color: #45a049;
}

.mpfm-file-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mpfm-file-table th, .mpfm-file-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.mpfm-file-table th {
    background-color: #f2f2f2;
    font-weight: bold;
    color: #333;
}

.mpfm-file-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.mpfm-file-table tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.2s ease;
}

.mpfm-file-table a {
    color: #0073aa;
    text-decoration: none;
}

.mpfm-file-table a:hover {
    text-decoration: underline;
}

.mpfm-file-table a.delete-link {
    color: #d9534f;
}

.mpfm-file-table a.delete-link:hover {
    color: #c9302c;
    text-decoration: underline;
}