<div class="relative">
    
    <button wire:click="closeModal"
            class="absolute top-4 right-4 text-gray-400 hover:text-gray-600 transition-colors z-10"
            aria-label="Cerrar">
        <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24">
            <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path>
        </svg>
    </button>

    <div class="p-6">
        <h3 class="text-lg font-semibold text-gray-900 mb-2 pr-8">
            <?php echo e($title); ?>

        </h3>
        
        <p class="text-gray-600 mb-4">
            <?php echo e($message); ?>

        </p>
        
        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($itemName): ?>
            <p class="text-sm font-medium text-gray-800 mb-4">
                <span class="font-semibold"><?php echo e($itemName); ?></span>
            </p>
        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
        
        <div class="flex justify-end space-x-3 mt-6">
            <button wire:click="closeModal"
                    class="<?php echo e($this->getCancelButtonClasses()); ?>">
                <?php echo e($cancelText); ?>

            </button>
            <button wire:click="confirm"
                    class="<?php echo e($this->getConfirmButtonClasses()); ?>">
                <?php echo e($confirmText); ?>

            </button>
        </div>
    </div>
</div><?php /**PATH /var/www/html/resources/views/livewire/components/confirm-modal.blade.php ENDPATH**/ ?>