/* Table styling */
.uam-attachments-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.uam-attachments-table th,
.uam-attachments-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.uam-attachments-table th {
    background-color: #f9f9f9;
}

/* Delete button styling */
.uam-delete-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.uam-delete-button:hover {
    background-color: #cc0000;
}