.custom-fields-section {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.custom-field {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.custom-field:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.custom-field strong {
    display: inline-block;
    min-width: 150px;
    color: #333;
}

.custom-field-file {
    display: inline-block;
    padding: 5px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}

.custom-field-file:hover {
    background: #f5f5f5;
    text-decoration: none;
}
/* Destination Field Repeater Styles */
.fieldset-destination .destination-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fieldset-destination .destination-stop {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.fieldset-destination .destination-stop input {
    flex: 1;
    padding: 8px;
    margin-right: 10px;
}

.fieldset-destination .sortable-handle {
    cursor: grab;
    padding: 5px 10px;
    background: #ddd;
    border-radius: 3px;
    margin-right: 10px;
}

.fieldset-destination .remove-stop {
    background: #f44336;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.fieldset-destination .remove-stop:hover {
    background: #d32f2f;
}

.fieldset-destination .add-destination-stop {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #4caf50;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.fieldset-destination .add-destination-stop:hover {
    background: #388e3c;
}

.destination-list .sortable-placeholder {
    background: #f0f0f0;
    border: 2px dashed #bbb;
    height: 40px;
    margin-bottom: 10px;
}