/**
* Theme Name: Workreap Child
* Description: This is a child theme of Workreap.
* Author: Amentotech
* Template: workreap
* Version: 0.0.1
*/

.wr-uploaded-attachments ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.wr-uploaded-attachments li {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 8px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    position: relative;
    vertical-align: top;
    min-width: 120px;
}

.remove-attachment {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    font-weight: bold;
    z-index: 10;
}

.remove-attachment:hover {
    background: #cc0000;
    transform: scale(1.1);
}

/* Ensure the file links are properly styled */
.wr-uploaded-attachments li a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.wr-uploaded-attachments li a:hover {
    color: #007cba;
}

.wr-uploaded-attachments li img {
    display: block;
    margin: 0 auto 5px auto;
}


.remove-attachment {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


