.custom-attribute-form-wrapper {
    margin: 18px 0;
    background: #f8f9fc;
    border-radius: 8px;
    padding: 18px 20px;
    border: 1px solid #e0e0e0;
}
.custom-attribute-form-fields label {
    display: block;
    margin-bottom: 14px;
    font-weight: 500;
    color: #333;
}
.custom-attribute-form-fields input[type="text"],
.custom-attribute-form-fields input[type="email"],
.custom-attribute-form-fields textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 4px;
    font-size: 1em;
}
.custom-attribute-form-fields textarea {
    min-height: 60px;
}
.custom-attribute-form-fields input[type="file"] {
    margin-top: 4px;
}
.custom-attribute-form-fields .file-selected {
    display: block;
    color: #4a90e2;
    font-size: 0.95em;
    margin-top: 2px;
}

/* --- DRAG & DROP FILE UPLOAD --- */
.custom-file-dragdrop {
    border: 2.5px dashed #4a90e2;
    background: #f4f8fd;
    padding: 28px 18px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 14px;
    transition: border-color 0.22s, background 0.22s;
    position: relative;
    color: #225;
    font-size: 1.11em;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(74,144,226,0.04);
}
.custom-file-dragdrop.dragover {
    border-color: #1b6ac6;
    background: #e7f0fa;
}
.custom-file-dragdrop .dragdrop-label {
    color: #4a90e2;
    font-size: 1.08em;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.file-list {
    margin-top: 13px;
    text-align: left;
}
.file-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    background: #f9f9fb;
    border-radius: 4px;
    padding: 4px 7px;
    font-size: 0.97em;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.file-preview {
    margin-right: 8px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    max-width: 44px;
    max-height: 44px;
}
.file-remove {
    background: none;
    border: none;
    color: #d7263d;
    font-size: 1.3em;
    margin-left: 8px;
    cursor: pointer;
    padding: 0 3px;
    line-height: 1;
    transition: color 0.2s;
}
.file-remove:hover {
    color: #a61b28;
}
.dragdrop-elementor-icon {
    display: block;
    margin: 0 auto 8px auto;
    font-size: 1.5em !important;
    color: #4a90e2 !important;
    width: auto;
    height: auto;
    max-width: 1.7em;
    max-height: 1.7em;
    line-height: 1;
}

.custom-file-dragdrop:before {
    display: none !important;
}

.custom-file-dragdrop:before {
    content: '\f093';
    font-family: 'Font Awesome 5 Free', 'FontAwesome', Arial, sans-serif;
    font-weight: 900;
    font-size: 2.2em;
    color: #4a90e2;
    display: block;
    margin: 0 auto 8px auto;
    opacity: 0.19;
    pointer-events: none;
}
@media (max-width: 600px) {
    .custom-file-dragdrop {
        padding: 14px 4px;
        font-size: 0.99em;
    }
}
