/* Lightweight Delete Confirmation Styles */

[data-delete-form] button[type="submit"].confirmed {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    animation: pulse 0.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

[data-delete-form] button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
