/* Confirm Modal View Styles */

confirm-modal-view {
    --primary-color: #702A2A;
    --danger-color: #e74c3c;
}

confirm-modal-view .btn-confirm {
    background: var(--primary-color);
    color: white;
}

confirm-modal-view .btn-confirm:hover {
    background: #5a1f1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(112, 42, 42, 0.4);
}

confirm-modal-view .btn-cancel {
    background: #f0f0f0;
    color: #333;
    border: 1px solid #e0e0e0;
}

confirm-modal-view .btn-cancel:hover {
    background: #e0e0e0;
    border-color: #999;
}

confirm-modal-view .btn-danger {
    background: var(--danger-color);
    color: white;
}

confirm-modal-view .btn-danger:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}