/* Drag and Drop Styles */
.topppa-repeater-placeholder {
    border: 2px dashed #2563eb;
    background: #f0f9ff;
    margin: 10px 0;
    border-radius: 6px;
    visibility: visible !important;
}

.topppa-cpt-accordion-field-group {
    cursor: move;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topppa-cpt-accordion-field-group:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.topppa-cpt-accordion-field-group.ui-sortable-helper {
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.topppa-field-updated {
    animation: fieldUpdate 0.5s ease;
}

@keyframes fieldUpdate {
    0% {
        background-color: #f0f9ff;
    }
    50% {
        background-color: #e0f2fe;
    }
    100% {
        background-color: transparent;
    }
} 